<%
'参数 ?i初始化
'参数 ?s显示
'不带参数 测试
response.expires=-1
p = request.querystring
if p = "i" then '初始化
application("csdn")=""
response.end
end if
if p = "s" then '显示'
response.write application("csdn")
response.end
end if
while true '测试
application("csdn")="csdn"
response.redirect "?s"
application("csdn")="c s d n"
wend
%>
------解决方案-------------------- 可以肯定,不会执行,直接嗖的一声就跳走了哈!这个问题我以前也在坛子里发过这样的帖子,经众多高手讨论试验,最终确定跳转后的代码不会执行,因此数据库,对象什么的必须在跳转前关闭,否则就只好等它自己关了!参考:http://topic.csdn.net/u/20071218/12/15c02d4b-e968-4d59-8a14-c0f5741addda.html
------解决方案-------------------- 不会执行。
------解决方案--------------------