Re: Uploaders appears to stop running at Render() statement

  •  12-27-2011, 4:04 AM

    Re: Uploaders appears to stop running at Render() statement

    Hi bbaldrober,
     
    Can you create an example page which can reproduce this issue, and send it to Kenneth@CuteSoft.net? I will check it and get back to you as soon as possible.
     
    Does the example page below works for you?
     
    <%@  language="VBScript" %>
    <!-- #include file="aspuploader/include_aspuploader.asp" -->
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Form - Single File Upload </title>
    </head>
    <body>
        <div>
            <%
       Dim uploader
       Set uploader=new AspUploader
       uploader.Name="myuploader"
        uploader.InsertText="Upload File (Max 10M)"
                uploader.MultipleFilesUpload=true
          uploader.render()
            %>
        </div>
    </body>
    </html>
     
    Regards,
     
    Ken 
View Complete Thread