-------------1.htm<style type="text/css">
<!--
.disList {
font-size: 14px;
line-height: 20px;
font-family: Arial, Helvetica, sans-serif;
}
.a:link {
font-size: 14px;
color: #D26F00;
text-decoration: none;
}
.a:visited {
font-size: 14px;
color: #F07E00;
text-decoration: underline;
}
.a:hover {
font-size: 14px;
color: #CC6B00;
text-decoration: underline;
}
-->
</style>

解决方案 »

  1.   

    不好意思,呵呵。我用VMware虚拟的机器复制有点问题---------------------------1.htm
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>无标题文档</title>
    <style type="text/css">
    <!--
    body {
    background-color: #000000;
    }
    -->
    </style></head><body>
    <script>
    top.document.all.tt.rows="*,100"
    </script>
    </body>
    </html>
      

  2.   

    ----------------------------------2.htm<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>无标题文档</title>
    </head><body>
    </body>
    </html>
      

  3.   

    按照 rayFairy() 短消息说的 <a href="#" onclick="history.back()">[返回]</a>
    这样试试
    还是不行
      

  4.   

    终于可以读出缓存了
    出现这个问题和是因为session
    我的登录页面(php+mysql)
    在最开始的时候加了一个session_start();
    造成了这个问题!简单代码:
    session_start();
    $act = $_REQUEST['act'];
    if ($act == in){//数据库连接函数及登录验证模块}else{//{form代码}}-------------
    将seesion值写入if循环中就好了!
      

  5.   

    跟服务器的Header头有关系
    跟网页的Meta头也有关系
    你搜"Header cache-control private"就知道了
      

  6.   

    哪你可以用window.loation.reload("URL",false)这样的效果是跟history.back()效果是差不多的,从新装载你刚来的哪个页面,false表明不附加新的东西,与history.back(),history.go(-1)功能是一样的.
      

  7.   

    我按照老高的测试了一下
    即使去掉所有的meta标签,只要session_start()加在if控制之内,就不会出现问题.
    当然 绝对和http头有关
    我分析的原因:当session_start()在文件最前面时,从一开始就和服务器建立了联系(session已经发出)
    所以以后即使在文本框中输入,也不能加入本地缓存,所以history.go(-1),history.back()等等都是在session发出前的那个文本框为空的界面.
    不知道这样理解是否正确?
      

  8.   

    我也有这样的问题,返回时数据是空的,也把session_start()这个弄掉了,,可还是不能用也!到底要这样才能用,那个大虾可以给我提示一下啊.谢谢!
      

  9.   

    http://blog.csdn.net/ccxxcc/archive/2005/08/22/462010.aspx