Javascript – How to control Loading panel on button click

asp.net-3.5devexpressjavascript

Work on C#,Asp.net, on my page Click on AspxButton i want to show loading panel with text processing…., After complete the whole event work ,Loading panel become false.

On button click how to control Loading Panel

Best Answer

If you're using ASP.NET AJAX, you can use the UpdateProgress control in conjunction with the UpdatePanel to show an element while the server is doing the processing.

Check out Scott Guthrie's blog for an example.