Re: Using Multiple "Single File Upload" in a single Page

  •  01-29-2013, 12:25 PM

    Re: Using Multiple "Single File Upload" in a single Page

    Hi dcahya,

     

    Below is the example page. "form-multiplefiles.asp" is another page which contains the asp uploder.

     

    1. <%@  language="VBScript" %>  
    2. <!-- #include file="aspuploader/include_aspuploader.asp" -->  
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">  
    4. <html xmlns="http://www.w3.org/1999/xhtml">  
    5. <head>  
    6.     <title>example  
    7.     </title>  
    8. </head>  
    9. <body>  
    10.     <div>  
    11.         <%  
    12.             Dim uploader  
    13.             Set uploader=new AspUploader  
    14.             uploader.Name="myuploader"  
    15.         %>  
    16.         <%=uploader.GetString() %>  
    17.     </div>  
    18.     <div>  
    19.         <iframe src="form-multiplefiles.asp" width="400" height="400"></iframe>  
    20.     </div>  
    21. </body>  
    22. </html>  
     

    Regards,

     

    Ken 

View Complete Thread