Link to home
Start Free TrialLog in
Avatar of VBdotnet2005
VBdotnet2005Flag for United States of America

asked on

Updateprogress

When I do this like below, my progress control displays on the top. How can I put indicator in the middle of the panel after a
user click Submit in Updatepanel? I want to prevent a user from clicking Submit button again.




<asp:UpdateProgress ID="progress1" runat="server">
        <ProgressTemplate>
       
            <div class="progress">
                <img src="indicator.gif" />
                Please Wait...
            </div>
       
        </ProgressTemplate>
    </asp:UpdateProgress>
<asp:Updatepanel id...
      textboxes
      button submit
      ...
</asp:UpdatePanel>
Avatar of Roopesh Reddy
Roopesh Reddy
Flag of India image

Hi,

Check the below article, which explains the same!

https://sites.google.com/site/gdkralev/prevent-user-from-clicking-twice-at-a-button-with-asp-net-ajax

Hope it helps u...
ASKER CERTIFIED SOLUTION
Avatar of rajeeshmca
rajeeshmca
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial