Loading Data Message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to display a message using an aspx page with controls on it that the data is loading for the page without having to display one html page then reloading the aspx page. in other words display a message on the aspx page before all the controls are loaded and the data, then display the controls with the data all in one aspx page?

or if there is another way to do this, please how...

thanks
 
Angel said:
Is there a way to display a message using an aspx page with controls on it
that the data is loading for the page without having to display one html
page then reloading the aspx page. in other words display a message on the
aspx page before all the controls are loaded and the data, then display the
controls with the data all in one aspx page?
or if there is another way to do this, please how...

No, there's really no way to do this.

When your data is loading, it's loading on the server. When the data are
through loading, the server emits the completed HTML. In the meantime, your
user is sitting there looking at the previous page.

The only way for this to work is for the previous page to say "data loading"
and the new page to show your data.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top