28,407
社区成员
发帖
与我相关
我的任务
分享
我改写一下做个备份,这里百度收录的挺快,说不定还有人需要的:
<%
refurl=Request.ServerVariables("http_referer")
if refurl="" then'
%>
这是直接在浏览器上打开显示的内容
<%else%>
这是从外面跳转进入显示的内容
<%end if%>refurl=Request.ServerVariables("http_referer")'获取来源网址
if refurl="" then'来源为空跳转到其他页面
response.redirect "其他页面url"
Response.end
end if