Progress.jsp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <%@
  2. page contentType="text/html;charset=euc-kr"
  3. %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
  8. <title>Rexpert Wait</title>
  9. <script language="javaScript">
  10. var goInterval;
  11. var giCnt = 0;
  12. function fnPreView() {
  13. giCnt++;
  14. txtCount.value = giCnt;
  15. //window.focus();
  16. }
  17. function OnLoad() {
  18. goInterval = window.setInterval("fnPreView()", 500);
  19. }
  20. </script>
  21. <script LANGUAGE="JavaScript" FOR="window" EVENT="onblur">
  22. //window.setActive();
  23. window.focus();
  24. </script>
  25. </head>
  26. <body topmargin="0" leftmargin="0" onload="//OnLoad();">
  27. <table width="100%" height="100%" border="0" align="center" cellpadding="3" cellspacing="2" bgcolor="7EC2EF"
  28. style="FONT-SIZE: 9pt; COLOR: #666666; LINE-HEIGHT: 18px; FONT-FAMILY: 돋움, Arial">
  29. <tr>
  30. <td bgcolor="#FFFFFF" align="center">
  31. <br>
  32. <img src="Progress.gif" border="0">
  33. <br>
  34. 작업중입니다.<br>
  35. 잠시만 기다려 주세요..
  36. <br>
  37. <br>
  38. </td>
  39. </tr>
  40. </table>
  41. </body>
  42. </html>