当前位置: 代码迷 >> ASP >> 服务器端有没有类似 location.replace() 的函数,该如何解决
  详细解决方案

服务器端有没有类似 location.replace() 的函数,该如何解决

热度:667   发布时间:2012-03-07 09:13:51.0
服务器端有没有类似 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() //加上这个试下。
  相关解决方案