Click here to Skip to main content
15,915,611 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hai

I need to gray out the update panel content which is getting updated alone.

I used the methd mentioned in http://thecodebug.com/?p=33#comment-2093[^].If i use this means,On click event of the button is not getting triggered.That loading div is running continuously...

Pls help me. Its too urgent
Posted
Comments
Sandeep Mewara 17-May-12 3:08am    
"Urgent" for you but not for others - right? People help here when they want to as per their time. Keep patience.

 
Share this answer
 
C#
.blur
{

    background-color: White;

   filter: alpha(opacity=50);
    opacity: 0.7;

    z-index: 120;

}




XML
<asp:UpdateProgress ID="UpdateProgress2" runat="server" >
    <ProgressTemplate>
                  <div id="Imgt"    style="position: absolute;width:1030px; height:300px;" align="center" valign="middle" runat="server" class="blur">
                  <img src="ajax-loader (5).gif"  style="position:relative;right:100px" /><br />

                  </div>
                  </ProgressTemplate>
  </asp:UpdateProgress>
 
Share this answer
 
Comments
verriabbayi 7-Jul-12 8:24am    
how to show update progress and, at the time of progressing how to disable all remaining controls?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900