I am trying to make a progress bar that is just static. I mean the progress bar is just a part of my web form, I want to use a progress bar to show a percentage of a size but I dont know how to use the asp:updateprogr ess. I am just new with this control and I dont know how to use the control just for displaying.
How to make a customize asp:updateprogress tool
Collapse
X
-
How to make a customize asp:updateprogress tool
-
Have you seen what MSDN has on how to use the UpdateProgress Control?
I haven't really had the pleasure of using this control yet but judging by the example given in that link it doesn't seem to hard to get it to work. While the displaying the UpdateProgress, you can add an image/animated gif as a processing indicator. -
Code:<asp:UpdateProgress ID="UpdateProgress1" runat="server"> <ProgressTemplate> <table width="100%" height="100%" bgcolor="#5189BD"> <tr> <td align="center" valign="middle" class="Dir"> <img src="http://bytes.com/topic/asp-net/images/process.gif" height="20" align="absmiddle" /> <%=Sending()%> </td> </tr> </table> </ProgressTemplate> </asp:UpdateProgress>Comment
Comment