Skip to content Skip to sidebar Skip to footer

Disabled Updateprogress For An Entire Page

I have checked out this solution: Is there a way to disable UpdateProgress for certain async postbacks? But this disables my controls from loading at all! I have an UpdateProgress

Solution 1:

Update Progress renders as a DIV. E.g. if you have something like

<asp:UpdateProgressID="xupProgress"runat="server"  ><ProgressTemplate><imgsrc = "images/LOADING.GIF"alt="Loading..."  /></ProgressTemplate></asp:UpdateProgress>

It will render as

<divid="xupProgress"><imgsrc = "images/LOADING.GIF"alt="Loading..."  /></div>

Knowing this you can add a style to those pages that permanently hides that DIV:

#xupProgress {
    display:none !important
}

Post a Comment for "Disabled Updateprogress For An Entire Page"