관리 메뉴

웹개발자의 기지개

[ASP] 3초후 페이지 로딩하기 (페이지 로딩 지연시키기) 본문

ASP

[ASP] 3초후 페이지 로딩하기 (페이지 로딩 지연시키기)

http://portfolio.wonpaper.net 2020. 6. 13. 22:56

asp 로 해당 페이지를 특정시간 후에 로딩되도록 하고 싶을때 아래의 소스를 유용하게 사용할 수 있다.

 

1
2
3
4
5
6
7
8
9
10
<%
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, 0True 
End Function
 
sleep(3'3초 
%>
cs

 

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

 

 

Comments