Is it possible to display a "Loading Please Wait" page while another ASPX page is loading in the background.
Then when the page is done loading and it displays, then it replaces the first "Loading Please Wait..." page?
Thanks
Printable View
Is it possible to display a "Loading Please Wait" page while another ASPX page is loading in the background.
Then when the page is done loading and it displays, then it replaces the first "Loading Please Wait..." page?
Thanks
Yes, it is possible.
You can create a DIV of the width of the window, set its background to say, white, with your text on it. Give this DIV an id, and in the body's onload method, set the visibility of the DIV to hidden.
I haven't worked with DIV yet "onload"
Know where I can find turtorials or code on this?