Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
ASP.NET
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1" DynamicLayout="false">
    <ProgressTemplate>
 <img src="GsNJNwuI-UM.gif"  />
        
    </ProgressTemplate>
    </asp:UpdateProgress>


Suppose i'm having Update and Delete Button then i just want Updateprogress gif image to appear only on Update Button cLick
.

but in my case it appears whether i click on update or delete it shows in both conditions :(
Posted

1 solution

Put your button inside update panel and give the id same as AssociatedUpdatePanelID in UpdatePregress.

ASP.NET
 <asp:updatepanel id="UpdatePanel1" runat="server">
         <contenttemplate>
                   <asp:button id="btnSearch" runat="server" text="Search" onclick="btnSearch_Click" />
         </contenttemplate>
</asp:updatepanel>



Good luck.
 
Share this answer
 
v2
Comments
Surendra0x2 1-Mar-13 4:34am    
i did not get what u described suppose we have both button inside update panel and i don't want updateprogress image to appear on delete button then?
like

<asp:updatepanel id="UpdatePanel1" runat="server">
<contenttemplate>
<asp:button id="btnSearch" runat="server" text="Update" onclick="btnSearch_Click" />
<asp:button id="btn" runat="server" text="Delete" onclick="btn_Click" />

Raje_ 1-Mar-13 4:54am    
Keep your both buttons in separate updatepanel, means each update panel will contain only one button.
Surendra0x2 1-Mar-13 5:03am    
According to my requirement i can't use two update panel bro i can't make u understand :(

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