帮我看看这段代码 怎么跳过 执行

来源:百度知道 编辑:UC知道 时间:2024/09/25 11:38:44
帮我看看这段代码 怎么跳过 执行
if session("gly")<>"yes" then
response.redirect "r_cw.asp"
response.end
end if
怎么跳过r_cw.asp 执行一下的文件

1,跳过?那就去掉response.redirect "r_cw.asp"
2,如果你想同时执行 当前页和"r_cw.asp"这两个页面代码,又不想跳转到r_cw.asp上,那就用
Server.Execute("r_cw.asp")
相关资料就去查阅搜索引擎吧

if session("gly")<>"yes" then

改成

if 0 then