Dear Sir,
I have implemented Jquery loader by seeing your article http://www.aspsnippets.com/Articles/Display-loading-image-while-PostBack-calls-in-ASPNet.aspx. I have implemented this in Form submit. I'm working on export gridview to excel, when i click on export button i'm able to export gridview to excel but jquery loader still appear after complition of export. How to make it disappear ?. I'm using EnableEventValidation="false" by seeing your article http://www.aspsnippets.com/Articles/RegisterForEventValidation-can-only-be-called-during-Render.aspx. Because of this am i getting this problem?. Please provide the solution as soon as possible.
Thanks & Regards,
T.Govindarajulu.
Thanks a lot for your reply. I have found this code and it is working fine
$(function () { $('form').live("submit", function (e) { var $btn = $(document.activeElement); if ($btn.val() != 'Export') { ShowProgress(); } }); });
© COPYRIGHT 2026 ASPSnippets.com ALL RIGHTS RESERVED.