Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE>Loading...</TITLE>
<script language=javascript>
function dotIt(){
var i
for (i=0;i<=15;i++)
setTimeout('dotItAgain();',i*1000);
}
function dotItAgain(){
var value = theSpan.innerHTML;
theSpan.innerHTML = value + '.';
}
</script>
</HEAD>
<BODY onBlur="this.focus();" onLoad="dotIt();">
<P align=left><STRONG><FONT face=Arial
size=4><span id=theSpan name=theSpan>Loading.</span></FONT></STRONG></P>
</BODY>
</HTML>
response.buffer=true
<%@language=vbscript%>
<%option explicit%>
<%response.buffer=true%>
<body onLoad="closeLoader();">
<script language=javascript>
var url = 'load.htm';
var x = window.open(url,'loadingWindow','height=50,width=150,scrollbars=no,toolbar=no');
x.moveTo(200, 200);
function closeLoader(){
x.close();
}
</script>
<%
writeMainContent 'assuming you want to do it this way
%>
</body>
</html>