-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoading.aspx
More file actions
87 lines (78 loc) · 2.92 KB
/
Loading.aspx
File metadata and controls
87 lines (78 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<%@ page language="VB" autoeventwireup="false" inherits="OrderRouting_Loading, App_Web_loading.aspx.62c128f4" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Loading...</title>
<script type="text/javascript">
function doBlink() {
var blink = document.all.tags("BLINK")
for (var i=0; i<blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" ;
}
function startBlink() {
if (document.all)
setInterval("doBlink()",1000);
}
window.onload = startBlink;
var secs;
var timerID = null;
var timerRunning = false;
var delay = 1000;
function InitializeTimer()
{
secs = 5;
StartTheTimer();
}
function StopTheClock()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function StartTheTimer()
{
if (secs==0)
{
/*document.forms.waitForm.submit();*/
StopTheClock();
}
else
{
self.status = secs;
secs = secs - 1;
timerRunning = true;
timerID = self.setTimeout("StartTheTimer()", delay);
}
}
//-->
</script>
</head>
<body onload="InitializeTimer(); startBlink();">
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>
<asp:Label ID="lblStatus" runat="server" ForeColor="Red" BackColor="Transparent" Font-Names="verdana" >
<BLINK>Please Wait While Load is Calculated</BLINK>
</asp:Label>
</td>
</tr>
<tr>
<td>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="250" height="200" id="../Flash/lift_truck_intro_RevA_3-1-09" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="../Flash/lift_truck_intro_RevA_3-1-09.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="../Flash/lift_truck_intro_RevA_3-1-09.swf" quality="high" bgcolor="#ffffff"
width="250" height="200" name="../Flash/lift_truck_intro_RevA_3-1-09" align="middle"
allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>