当前位置: 代码迷 >> ASP >> 怎么判断b.asp是否从a.asp连接过来的
  详细解决方案

怎么判断b.asp是否从a.asp连接过来的

热度:93   发布时间:2012-02-19 19:43:39.0
如何判断b.asp是否从a.asp连接过来的
如何判断b.asp是否从a.asp连接过来的。
如果不是,就返回到c.asp

------解决方案--------------------
dim strPath
strPath = Request.ServerVariables( "HTTP_REFERER ")
if lcase(mid(strPath, instrrev(strPath, "/ ") + 1)) <> "a.asp " then
response.redirect( "c.asp ")
end if
------解决方案--------------------
Request.ServerVariables( "HTTP_REFERER ")
取得上一页的http地址及文件名
  相关解决方案