日期:2014-05-17  浏览次数:20921 次

服务器端有没有类似 location.replace() 的函数,
就是跳转后不能按“后退”键的函数,服务器端有吗?(vb)

------解决方案--------------------
没有
------解决方案--------------------
禁止缓存就行了。
------解决方案--------------------
你是客户端的问题,无法在服务器端解决的。
------解决方案--------------------
Response.Write( " <script language= 'jscript '> location.href( 'default.asp '); </script> ")
这样试试!
------解决方案--------------------
Response.Write( " <script language= 'jscript '> location.replace( " "default.asp " "); </script> ")
Response.End() //加上这个试下。