亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長(zhǎng)資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

    asp設(shè)置程序等待時(shí)間,使程序停止執(zhí)行某段時(shí)間間隔

    asp設(shè)置程序等待時(shí)間,使程序停止執(zhí)行某段時(shí)間間隔,代碼如下:

     

    Const CUTTime = 5

    Response.write(“<body style=’font-size:9pt’>正常執(zhí)行中..<br>下面調(diào)用阻斷,掛起流程” & CUTTime & “秒<br><br>”)
    Response.Flush
    CUT
    Response.write(“<br>正常執(zhí)行中..</body>”)
    Response.Flush

    Sub CUT()
         Dim NOWTime
         NOWTime = Now()
         Response.write(“<font color=blue>調(diào)用阻斷,掛起流程.當(dāng)前時(shí)間:” & NOWTime & “</font><br>”)
         Response.Flush
         Do While Datediff(“s”,NOWTime,Now()) < CUTTime
               REM 阻斷循環(huán)
         Loop
         Response.write(“<font color=green>銷(xiāo)毀阻斷,恢復(fù)流程.當(dāng)前時(shí)間:” & NOW() & “</font><br>”)
         Response.Flush
    End Sub
    %>

     

    分享到: 更多

    贊(0)
    分享到: 更多 (0)
    網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)