관리 메뉴

웹개발자의 기지개

[ASP] 3초후 페이지 지연시키기 본문

ASP

[ASP] 3초후 페이지 지연시키기

http://portfolio.wonpaper.net 2024. 1. 11. 21:38

 

1
2
3
4
5
6
7
8
9
10
11
 function sleep(scs)
 
      Dim lo_wsh, ls_cmd
 
      Set lo_wsh = CreateObject("WScript.Shell")
 
      ls_cmd = "%COMSPEC% /c ping -n " & 1 + scs & " 127.0.0.1>nul"
 
      lo_wsh.Run ls_cmd, 0, True 
 
  End Function
cs

 

 

참고 : https://stackoverflow.com/questions/2237393/how-to-delay-a-response-in-classic-asp

 

 

Comments