How can I display the circular swirl image, that is usually seen in asp.net pages, while a page is loading (retrieving data etc)?
|
|
If you're using UpdateProgress/UpdatePanel, here are some samples: http://www.asp.net/Ajax/Documentation/Live/overview/UpdateProgressOverview.aspx Here is a loading gif sample using UpdateProgress:
|
||||
|
|
|
Are you using UpdatePanel? or Are you using Javascript libraries like Jquery? If former then you can add the swirl to UpdateProgress if the latter (JQuery) then you can trigger the image on .ajaxStart() method. HTH |
|||
|
|
I use the jQuery BlockUI plugin to make this pretty easy to do, even inside an area on the page, say a dialog box. http://malsup.com/jquery/block/ here is an example making an AJAX call to the server:
Inside the DisplayNeewContactInfo function I call $.unblockUI(); to take the message away. I have the actual invoking of the BlockUI call in a wrapper function:
} You can download the entire project these examples came from, http://professionalaspnet.com/WCFJQuery.zip |
|||
|
|