Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Pure asp upload
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Forum LockedPure asp upload

 Post Reply Post Reply
Author
paulanthony View Drop Down
Newbie
Newbie
Avatar

Joined: 11 October 2005
Location: United Kingdom
Status: Offline
Points: 1
Post Options Post Options   Thanks (0) Thanks(0)   Quote paulanthony Quote  Post ReplyReply Direct Link To This Post Topic: Pure asp upload
    Posted: 11 October 2005 at 6:17am

For anyone that is having problems with having no COM control installed on the server for uploads you can use the following code to functions_upload.asp

<!--#include virtual="/includes/upload.asp"-->


at the top of the page.

line 397 add another case for no component...

Case "nocom"
            Dim Uploader
            Set Uploader = New FileUploader

            ' This starts the upload process
            Uploader.Upload()

    '******************************************
    ' Use [FileUploader object].Form to access
    '******************************************

' Check if any files were uploaded
        If Uploader.Files.Count = 0 Then
            Response.Write "File(s) not uploaded."
        Else
            ' Loop through the uploaded files
            For Each File In Uploader.Files.Items
       
        ' Check where the user wants to save the file

            ' Save the file
        File.SaveToDisk(Server.MapPath(strFileUploadPath))
        ' Output the file details to the browser if you want
        'Response.Write "File Uploaded: " & File.FileName & "<br>"
        'Response.Write "Size: " & File.FileSize & " bytes<br>"
        'Response.Write "Type: " & File.ContentType & "<br><br>"
        Next
    End If


You can grab the class at http://www.asp101.com/articles/jacob/scriptupload.asp


Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.