• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    如何处理超时事件?

    如何处理超时事件?


    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
    %>

     

    上一篇:如何动态生成WBMP?
    下一篇:何时将数据装载到Application 或 Session 对象中去?
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    如何处理超时事件? 如何,处理,超时,事件,如何,