Create a custom progress bar panel
There are 4 simple steps to create a custom progress bar panel:
- Create a panel control which will be used as custom progress bar panel.
- Create a label control inside panel control. This label control will be used as custom progress text label.
- Use the ProgressCtrlID property to specify the ID of panel control.
- Use the ProgressTextID property to specify the ID of progress text label.
Example:
<CuteWebUI:Uploader ID="Uploader1" runat="server" ProgressCtrlID="Panel1" ProgressTextID="Label1"></CuteWebUI:Uploader>
<asp:Panel ID="Panel1" runat="server">
<asp:Label ID="Label1" runat="server"></asp:Label>
</asp:Panel>