Hi lanikfs,
You can control the progress text style like the example below, the div is the progress text container, you can change the style directly.
- <%@ Page Language="C#" %>
-
- <%@ Register Namespace="CuteWebUI" TagPrefix="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- <title>example</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <CuteWebUI:Uploader runat="server" ID="Uploader1"
- ProgressCtrlID='Uploader1Progress' ProgressTextID='Uploader1ProgressText'>
- </CuteWebUI:Uploader>
- <asp:Panel runat="server" ID="Uploader1Progress">
- <div id="Uploader1ProgressText" style="width: 100px; overflow: hidden">
- </div>
- </asp:Panel>
- </form>
- </body>
- </html>
Regards,
Ken