I have asp.net UpdatePanel and UpdateProgress controls on my form . I'm trying to make Update progress modal by jQuery BlockUI Plugin or jquery itself .
the $(document).ajaxStart($.blockUI).ajaxStop($.unblockUI);
doesn't work , Because I'm using UpdatePanel and Server-Side ASP.NET ajax .
I've noticed in Partial postback just UpdateProgress disply style change from display: none
to display: block
So I'm wondering if there is any style changing event in jquery to call $.blockUI();
or any other solution in order to use jQuery BlockUI Plugin with asp.net updatepanel and UpdateProgress
Place this script below the ScriptManager control:
Timeout allows to avoid blocking page for very short async requests.