Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Showing some message while a page is loading

Status
Not open for further replies.

ejanakieff

Programmer
Sep 9, 2003
62
ES
I have a form that accepts diferents option of search (form into an asp page).

When the end user clicks on the "Search" button, sometimes the result page (another asp page) spends a lot of time to loading, and sometimes the form page remains visible several seconds and then begin to loading the result page.

I want to diplay a message like "The data is loading. Waiting..." between the end user clicks on the button since the result page apperars.

Thanks in advance.
Eva Janakieff
 
Use a response.flush at the end of each loop where the search data is being built up to send the buffer contents to the browser. This way the data will appear on the page one record at a time.



Chris.

Indifference will be the downfall of mankind, but who cares?
 
There is also a few FAQ's on the subject to check out

I use one of them myself in a spot of the dev site

How can I present a user with a loading message(2) ? faq333-3223
How can I present a user with a loading message? faq333-1419


___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
Aw, you beat me to my own FAQs onpnt :)

01000111 01101111 01110100 00100000 01000011 01101111 01100110 01100110 01100101 01100101 00111111
The never-completed website:
 
[wink] fastest link poster in the midwest I am!! [lol]

___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top