怎样使我的网页不能通过单击浏览器的Back按钮返回到它?
[此贴子已经被作者于2004-12-02 21:52:15编辑过]
不知道把网页的response.expires属性设成0算不算是达到效果了
test1.htm
<A HREF="test2.htm" onclick="javascript:location.replace(this.href); event.returnValue=false; "> test2</a>
test2.htm
<a href="javascript:history.back()">返回</a>
response.expires=0不可以;
location.replace()我也在用,但我有的页面是通过submit提交返回的由ASP生成的