Hello,
Some of the functions of my web application take a good amount of
time to load. Is there a good way to show users that information is
processing and will enventually be loaded? Like changing the cursor
to an hour glass? Does anyone have any sample code?

Thanks,
Billy

Re: Best way to show web page is processing data by Han

Han
Fri Dec 05 09:58:47 CST 2003

<html><head>
<SCRIPT LANGUAGE="vbs">
function foo()
document.body.style.cursor="wait"
settimeout "foo2", 1000, "vbscript"
end function

function foo2
document.body.style.cursor="default"
end function

</SCRIPT>
</head>

<BODY onclick="foo">
Click this page and you'll see something
</BODY>

"Billy Cormic" <billy_cormic@hotmail.com> wrote in message
news:dd2f7565.0312032250.66f1789c@posting.google.com...
> Hello,
> Some of the functions of my web application take a good amount of
> time to load. Is there a good way to show users that information is
> processing and will enventually be loaded? Like changing the cursor
> to an hour glass? Does anyone have any sample code?
>
> Thanks,
> Billy