'Please wait' screen between pages in C# ASP.NET. Best practice?

Posted by Glinkot on Stack Overflow See other posts from Stack Overflow or by Glinkot
Published on 2010-04-20T02:37:57Z Indexed on 2010/04/20 2:43 UTC
Read the original article Hit count: 805

Filed under:
|

Hi, I have a gridview with some imagebuttons, each of which kicks off a report page for that item. The report take 10-15 seconds to run, so I'd like a popup 'Generating report, please wait' type thing. I can think of a few ways but would like the opinion of those more experienced than I. The options I was considering:

a) link my imagebutton to an intermediate page that says 'please wait', and then refer it onto the report page from there. Seems a bit clunky b) Investigate using jquery or similar. I have telerik controls, they have a few things but it isn't clear if any are suitable. c) Define some kind of CSS layer with a please wait warning on it, and make it visible as part of the button's onclick event d) Look into jquery or similar

Any thoughts?

Thanks!

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about c#