Re: Custom css on the upload button

  •  07-31-2012, 8:18 AM

    Re: Custom css on the upload button

    Hi Luuukke,
     
    You can use property "InsertButtonID" to special the upload button to your own button, then you just need to change the style of your own button. Please try the example below
     
    1. <%@ Page Language="C#" %>  
    2.   
    3. <%@ Register Namespace="CuteWebUI" TagPrefix="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head id="Head1" runat="server">  
    7.     <title>example</title>  
    8. </head>  
    9.   
    10. <body>  
    11.     <form id="form1" runat="server">  
    12.         <CuteWebUI:UploadAttachments ID="uploader1" runat="server" InsertButtonID="button1">  
    13.         </CuteWebUI:UploadAttachments>  
    14.         <asp:Button ID="button1" runat="server" Text="my upload" />  
    15.     </form>  
    16. </body>  
    17. </html>  
    Regards,
     
    Ken 
View Complete Thread