I don't remember where I found this script, but it works for one of my
sites. http://snpgfinancial.com/index2.html will show you the script in
action.
<body onLoad="cacheOff()">
<!-- BEGINNING OF THE SCRIPT -->
<STYLE TYPE="text/css">
<!--
#cache {
position:absolute; left=200; top:100px; z-index:10;
visibility:hidden;
}
-->
</STYLE>
<!--
Lines above are creating a layer which show a message
displaying the 'PLEASE WAIT ... ' message
-->
<SCRIPT LANGUAGE="JavaScript">
ver = navigator.appVersion.substring(0,1)
if (ver >= 4)
{
document.write('<DIV ID="cache"><TABLE WIDTH=400 BGCOLOR=#000000
BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD ALIGN=center
VALIGN=middle><TABLE WIDTH=100% BGCOLOR=#FFFFFF BORDER=0 CELLPADDING=0
CELLSPACING=0><TR><TD ALIGN=center VALIGN=middle><BR><FONT FACE="Arial,
Verdana" SIZE=4><B>LOADING ...
</B></FONT><BR><BR></TD></TR></TABLE></TD> </TR></TABLE></DIV>');
var navi = (navigator.appName == "Netscape" &&
parseInt(navigator.appVersion) >= 4);
var HIDDEN = (navi) ? 'hide' : 'hidden';
var VISIBLE = (navi) ? 'show' : 'visible';
var cache = (navi) ? document.cache : document.all.cache.style;
largeur = screen.width;
cache.left = Math.round(100);
cache.visibility = VISIBLE;
}
function cacheOff()
{
if (ver >= 4)
{
cache.visibility = HIDDEN;
}
}
</SCRIPT>
Hope this helps!
Mark
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 25, 2002 4:01 PM
To: ActiveServerPages
Subject: In-Progress Message
I know this issue has been raised before, but I can't find it in the
archive search.
---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]