Connecting Tech Pros Worldwide Forums | Help | Site Map

Best approach for implementing a "Processing" graphic/message?

Rob R. Ainscough
Guest
 
Posts: n/a
#1: Jan 19 '06
For ASP.NET 2.0 (or 1.1) what is the best approach to implementing a
processing message or graphic while my task is working away?

Thanks, Rob.



Peter Bromberg [C# MVP]
Guest
 
Posts: n/a
#2: Jan 19 '06

re: Best approach for implementing a "Processing" graphic/message?


Rob,
There are probably a couple of dozen ways to do this. Here is an article I
put together with one approach that I like:

http://www.eggheadcafe.com/articles/20050108.asp

Peter
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com




"Rob R. Ainscough" wrote:
[color=blue]
> For ASP.NET 2.0 (or 1.1) what is the best approach to implementing a
> processing message or graphic while my task is working away?
>
> Thanks, Rob.
>
>
>[/color]
Steve C. Orr
Guest
 
Posts: n/a
#3: Jan 19 '06

re: Best approach for implementing a "Processing" graphic/message?


This is the simplest solution I've seen:
http://www.aspnetpro.com/NewsletterA...200308bm_l.asp

--
I hope this helps,
Steve C. Orr
MCSD, MVP
http://Steve.Orr.net



"Rob R. Ainscough" wrote:
[color=blue]
> For ASP.NET 2.0 (or 1.1) what is the best approach to implementing a
> processing message or graphic while my task is working away?
>
> Thanks, Rob.
>
>
>[/color]
Rob R. Ainscough
Guest
 
Posts: n/a
#4: Jan 20 '06

re: Best approach for implementing a "Processing" graphic/message?


Peter & Steve, thank you for the links.

I'm using ASP NET 2.0 now, is this approach still the best method? Also,
not sure how my page that is doing the long running task can notify the
progress page that it is done -- the progress pages seems to be hard coded
to a set time -- did I miss something?

Thanks, Rob.

"Steve C. Orr" <Steve@Orr.net> wrote in message
news:C760B773-5871-43F8-9639-A91B18474FA7@microsoft.com...[color=blue]
> This is the simplest solution I've seen:
> http://www.aspnetpro.com/NewsletterA...200308bm_l.asp
>
> --
> I hope this helps,
> Steve C. Orr
> MCSD, MVP
> http://Steve.Orr.net
>
>
>
> "Rob R. Ainscough" wrote:
>[color=green]
>> For ASP.NET 2.0 (or 1.1) what is the best approach to implementing a
>> processing message or graphic while my task is working away?
>>
>> Thanks, Rob.
>>
>>
>>[/color][/color]


Steve C. Orr [MVP, MCSD]
Guest
 
Posts: n/a
#5: Jan 21 '06

re: Best approach for implementing a "Processing" graphic/message?


True, that technique uses a fake progress bar that doesn't give a real
progress but keeps the user entertained while waiting.
For real progress you'll probably want to use ASP.NET 2.0 callbacks (AJAX).
Or you could use this control which does that (very well) for you:
http://dotnet.dart.com/PowerWEB_Live...eProgress.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net



"Rob R. Ainscough" <robains@pacbell.net> wrote in message
news:eiRZ95eHGHA.648@TK2MSFTNGP14.phx.gbl...[color=blue]
> Peter & Steve, thank you for the links.
>
> I'm using ASP NET 2.0 now, is this approach still the best method? Also,
> not sure how my page that is doing the long running task can notify the
> progress page that it is done -- the progress pages seems to be hard coded
> to a set time -- did I miss something?
>
> Thanks, Rob.
>
> "Steve C. Orr" <Steve@Orr.net> wrote in message
> news:C760B773-5871-43F8-9639-A91B18474FA7@microsoft.com...[color=green]
>> This is the simplest solution I've seen:
>> http://www.aspnetpro.com/NewsletterA...200308bm_l.asp
>>
>> --
>> I hope this helps,
>> Steve C. Orr
>> MCSD, MVP
>> http://Steve.Orr.net
>>
>>
>>
>> "Rob R. Ainscough" wrote:
>>[color=darkred]
>>> For ASP.NET 2.0 (or 1.1) what is the best approach to implementing a
>>> processing message or graphic while my task is working away?
>>>
>>> Thanks, Rob.
>>>
>>>
>>>[/color][/color]
>
>[/color]


Closed Thread