如何处理超时事件?

所属分类: 网络编程 / 编程10000问 阅读数: 1198
收藏 0 赞 0 分享

如何处理超时事件?


1
IIS为一个死循的执行过程设定执行时间(缺省为90秒)超时事件:
<%response.buffer=true%>
<body><html>
<%
DO
  counter=counter+1
  response.write counter & "<br>"
  response.flush
LOOP
%>
</body></html>

2、自定义时间。用程序设定超时事件的时间段:
<%
response.buffer=true
server.scripttimeout=20
%>
<body><html>
<%
DO
  counter=counter+1
  response.write counter & "<br>"
  response.flush
LOOP
%>
</body></html>

 

3、干涉超时时间段。捕获超时:
<%@ trANSACTION=Required%>
<%
response.buffer=true
server.scripttimeout=20
%>
<html><body>
</body>
<%
DO
  counter=counter+1
  response.write counter & "<br>"
LOOP
response.flush
response.write "
脚本运行完啦!"
%>
</html>
<%
Sub OnTransactionAbort()
      response.clear
    Response.Write "
,脚本运行超时了!"
end sub
%>

    4
、绕过超时事件:
<%@ trANSACTION=Required%>
<%
response.buffer=true
server.scripttimeout=40
%>
<html><body>
</body>
<%
DO  UNTIL counter=400
  counter=counter+1
  response.write counter & "<br>"
LOOP
response.flush
response.write "
脚本运行完啦!"
%>
</html>
<%
Sub OnTransactionAbort()
      response.clear
    Response.Write "
,脚本运行超时了!"
end sub
%>

 

更多精彩内容其他人还在看

如何把一个Excel文件放到ASP页面中去?

如何把一个Excel文件放到ASP页面中去?
收藏 0 赞 0 分享

如何把中文转换为UNICODE?

如何把中文转换为UNICODE?
收藏 0 赞 0 分享

如何编写TOP 10之类的排行榜?

如何编写TOP 10之类的排行榜?
收藏 0 赞 0 分享

如何动态添加Form项?

如何动态添加Form项?
收藏 0 赞 0 分享

如何读取一个.ini文件?

如何读取一个.ini文件?
收藏 0 赞 0 分享

如何计算ASP页面的载入时间?

如何计算ASP页面的载入时间?
收藏 0 赞 0 分享

如何计算下载一个文件需要多长时间?

如何计算下载一个文件需要多长时间?
收藏 0 赞 0 分享

如何检测用户第一次访问我的网站并显示友好信息?

如何检测用户第一次访问我的网站并显示友好信息?
收藏 0 赞 0 分享

如何判断URL格式是否符合规范?

如何判断URL格式是否符合规范?
收藏 0 赞 0 分享

如何取得服务器上的用户组列表?

如何取得服务器上的用户组列表?
收藏 0 赞 0 分享
查看更多