Link to home
Start Free TrialLog in
Avatar of praveenuni
praveenuni

asked on

Wait Cursor

Hello
In my asp.net app, I want to change the cursor to WAIT cursor, while the page is processing. Once the page is loaded , it should turn to default cursor. How can I do this?

Thanks
Avatar of samtran0331
samtran0331
Flag of United States of America image

>>I want to change the cursor to WAIT cursor
Are you talking about the hourglass cursor? It should do that automatically...
Avatar of praveenuni
praveenuni

ASKER

nope .. its not doing automatically
If you were using a technology other than asp.net, I'd tell you to use javascript to change the cursor at the very top of the html, then change it back at the very bottom.

Unfortunately asp.net flushes the entire html all at one time, that is, asp.net creates all the html, THEN starts to send it out.  Unless you have a huge HTML page, I really don't think you can do this and have it work like you'd want it to.  The wait cursor would only be up for a split second.
SOLUTION
Avatar of samtran0331
samtran0331
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial