此回复为自动发出,仅用于显示而已,并无任何其他特殊作用
楼主【Amanda831022】截止到2008-06-30 14:45:42的历史汇总数据(不包括此帖):
发帖数:4                  发帖分:360                
结贴数:2                  结贴分:140                
未结数:2                  未结分:220                
结贴率:50.00 %            结分率:38.89 %            
楼主加油

解决方案 »

  1.   

    例如我在a.jsp中点击登录(action路径是login.do)进入一个页面main.jsp,地址栏中是login.do。 在main.jsp这个页面中是这样的<%@ page contentType="text/html; charset=gb2312" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=GB3212-80">
    <title>xuli</title>
    </head>
    <frameset cols="100,*" framespacing="0" border="no" frameborder="0">
    <frameset rows="80,*">
    <frame src="/frame/top.jsp" name="top" scrolling="no">
    <frame src="/frame/banner.jsp" name="banner" target="main" noresize scrolling="no">
    </frameset>
    <frameset rows="40,*">
    <frame src="/frame/topline.jsp" name="topline" scrolling="no">
    <frame src="/frame/about.jsp" name="main">
    </frameset>
    <noframes>
    <body>
    <p>This page uses frames, but your browser doesn't support them. </p>
    </body>
    </noframes>
    </frameset>
    </html>
    后边我通过按钮进入任何一个页面c.jsp中,(这个页面显示在main这个区域中)(ame src="/frame/about.jsp" name="main">
    那么我每次刷新的时候,在地址栏出现的就总是login.do,我怎么做到当我的页面显示的c.jsp时候,刷新的时候提交的也c.jsp的内容
      

  2.   

    这个好像是不能改变的,就像ajax提交一样,F5和刷新,都是刷新当前地址栏上的url,期待有其他答案