I want to add progressbar on form. I have a form which send invitation email to couple of users.
so how can I progressbar to show the sending email process?
I add following code in .aspx file
<asp:UpdateProgress ID="UpdateProgress" runat="server">
<ProgressTemplate>
<asp:Image ID="Image1" ImageUrl="~/ProgressImage/ajax-loader.gif" AlternateText="Processing" runat="server" />
</ProgressTemplate>
</asp:UpdateProgress>
Is this method is correct?
Looks good to me… You do have a scriptManager and an updatePanel on this aspx page too? See this demo code.