Hello Sir
i added loading popup on my Home page linked with masterpage, i am having login button at the top of master page, when i click on login, popup is visble with login, and i enter details and click ok, the popup of loading which i added in my homepage gets visible, why its happening as i put my loading on home page not on master page..please help...
Solution would be to change
$('form').live("submit", function () { ShowProgress(); });
to
$('[id*=Button1]').live("click", function () { ShowProgress(); });
Where Button1 is the Id of the button you want to show loading progress
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.