Dispaly message while loading the page

Dispaly message while loading the page

am 15.01.2008 22:29:32 von Adrian

Hi All,

What kind of code is good to display message while the page is loaded:
Something like this: Please wait...
and when it is fully loaded then to clear the message.

Please let me know of what methods and some code.

Thanks,

Joe

Re: Dispaly message while loading the page

am 15.01.2008 23:00:28 von smar

You could have users directed to a page that says "Please Wait" and have the
processing done in the background of that page. Then, when the processing
is done, simply redirect the user to a new page with the results.


"JoeP" wrote in message
news:%23eqSw27VIHA.4140@TK2MSFTNGP04.phx.gbl...
> Hi All,
>
> What kind of code is good to display message while the page is loaded:
> Something like this: Please wait...
> and when it is fully loaded then to clear the message.
>
> Please let me know of what methods and some code.
>
> Thanks,
>
> Joe
>

Re: Dispaly message while loading the page

am 15.01.2008 23:28:31 von Adrian

That sounds like a good idea.
How would I know when the processing is done? Any code?

Thanks,

Joe

"Scott M." wrote in message
news:eTI6nG8VIHA.4076@TK2MSFTNGP03.phx.gbl...
> You could have users directed to a page that says "Please Wait" and have
> the processing done in the background of that page. Then, when the
> processing is done, simply redirect the user to a new page with the
> results.
>
>
> "JoeP" wrote in message
> news:%23eqSw27VIHA.4140@TK2MSFTNGP04.phx.gbl...
>> Hi All,
>>
>> What kind of code is good to display message while the page is loaded:
>> Something like this: Please wait...
>> and when it is fully loaded then to clear the message.
>>
>> Please let me know of what methods and some code.
>>
>> Thanks,
>>
>> Joe
>>
>
>

Re: Dispaly message while loading the page

am 16.01.2008 01:12:43 von smar

At the end of your code, on the please wait page, you'd add:

response.redirect("newpage.aspx")


"JoeP" wrote in message
news:uyeFuX8VIHA.5816@TK2MSFTNGP06.phx.gbl...
> That sounds like a good idea.
> How would I know when the processing is done? Any code?
>
> Thanks,
>
> Joe
>
> "Scott M." wrote in message
> news:eTI6nG8VIHA.4076@TK2MSFTNGP03.phx.gbl...
>> You could have users directed to a page that says "Please Wait" and have
>> the processing done in the background of that page. Then, when the
>> processing is done, simply redirect the user to a new page with the
>> results.
>>
>>
>> "JoeP" wrote in message
>> news:%23eqSw27VIHA.4140@TK2MSFTNGP04.phx.gbl...
>>> Hi All,
>>>
>>> What kind of code is good to display message while the page is loaded:
>>> Something like this: Please wait...
>>> and when it is fully loaded then to clear the message.
>>>
>>> Please let me know of what methods and some code.
>>>
>>> Thanks,
>>>
>>> Joe
>>>
>>
>>
>
>

Re: Dispaly message while loading the page

am 16.01.2008 15:56:55 von Adrian

Ok Thanks.