How to use ASPUpload ?

AspUpload is a COM+ component which enables an ASP application to capture, save and process files uploaded to the web server with a browser. The files are selected for uploading via an HTML POST form using the <INPUT TYPE=FILE> tag.
With AspUpload, you can add file upload functionality to your Web application in as little as 2 lines of ASP script. In addition to uploading, AspUpload offers a wide range of file management functions, including secure downloading, saving files in the database, permission and attribute management, image size extraction, file encryption, etc.
 
Sample Codes:
1. <HTML>
2. <BODY>
3. <%
4. Set Upload = Server.CreateObject("Persits.Upload")
5. Count = Upload.Save("c:upload")
6. Response.Write Count & " file(s) uploaded to c:upload"
7. %>
8. </BODY>
9. </HTML>
 
Explanation According to Line
1. Open HTML tag
2. Open BODY tag
3. Open ASP tag
4. Create instance of Upload control
5. Save upload
6. Produce message
7. Close ASP tag
8. Close BODY tag
9. Close HTML tag
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to use CDOSYS Email ?

  Use following code for CDOSYS Email componets. <% Set cdoConfig =...

How to use Dundas Upload ?

The following code demonstrates how to populate the Upload control's collections, save uploaded...

error:Include file not found

Cause: Mostly This error cause when the parent path of your domain does not enable....

How to increase ASP timeout ?

You can increase timeout time from the ASP script itself by using Server.ScriptTimeOut property...

error:'8004020f' in CDONTS

  This error cause when you use wrong mail server in CDONTS Email componets. You will...