Multiple upload buttons in one page

Last post 01-04-2013, 8:49 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  01-04-2013, 4:27 AM 75574

    Multiple upload buttons in one page

    Hello,

     

    I would like to know if it is possible to have multiple upload buttons in one page, like the image below.

     

    Thanks!

    Qui 

     

  •  01-04-2013, 8:49 AM 75580 in reply to 75574

    Re: Multiple upload buttons in one page

    Hi QuiTran,

     

     

    Yes, you can add multiple instances in the same page, like 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. <body>  
    10.     <form id="form1" runat="server">  
    11.         <CuteWebUI:Uploader runat="server" ID="Uploader1">  
    12.         </CuteWebUI:Uploader>  
    13.         <CuteWebUI:Uploader runat="server" ID="Uploader2">  
    14.         </CuteWebUI:Uploader>  
    15.         <CuteWebUI:Uploader runat="server" ID="Uploader3">  
    16.         </CuteWebUI:Uploader>  
    17.     </form>  
    18. </body>  
    19. </html>  
     

    Regards,

     

    ken 

View as RSS news feed in XML