新微赢技术网

标题: Cookies问题 [打印本页]

作者: ξǒひ糀無蒛    时间: 2010-1-15 07:57
标题: Cookies问题
为什么必须要加on error resume next
<%
const MAXLENGTH=6
'on error resume next
if Not Request.Cookies("ID") <> "" Then
Request.Cookies("ID")="ID"
Application.Lock
if application("counter")="" Then
application("counter")=0
End If
application("counter")=application("counter")+1
Application.Unlock
End If
Response.Write(application("counter"))
length=len(application("counter"))
for i=1 to MAXLENGTH-length
Response.Write("<img src=../images/c0.gif align='absmiddle'>")
next
for i=1 to length
index=mid(application("counter"),i,1)
Response.Write("<img src=../images/c"&index&".gif align='absmiddle'>")
next
Response.Cookies("ID")="ID"
%>
作者: 龙行天下    时间: 2010-1-15 07:57
可以不加啊,那是注释嘛
作者: 西山婉儿    时间: 2010-1-15 07:57
为了忽略错误,或者说跟踪错误
类似与c++/java的try/catch块




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2