ASPUpload 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.
Some features include:
* Ability to upload multiple files at once.
* Access to text items on the form.
* HTML-based progress bar.
* Ability to save files in the database as blobs.
* Support for MS Access OLE Object headers.
* Ability to export files from the database.
* Automatic generation of unique file names to prevent collisions with existing files.
* Ability to put a limit on the size of files being uploaded.
* Ability to preserve files' "Last Modified" timestamp.
* Full ADO support when handling blobs.
* Directory uploads
* Image size and type extraction functionality.
More information:
User manual:
http://www.aspupload.com/manual.html
For Live Demo:
http://www.aspupload.com/livedemo.html
Persits ASPUpload sample code
Filename: aspupload1.asp
(referred to by Form Upload Page below)
<HTML> |
<BODY> |
<% |
Set Upload = Server.CreateObject("Persits.Upload") |
count = upload.savevirtual ("/aspupload") |
Response.Write Count & " file(s) uploaded" |
%> |
</BODY> |
</HTML> |
Form Upload Page:
|
<html> |
<head> |
</head> |
<body bgcolor="#ffffff"> |
<form action="aspupload1.asp" method="post" enctype="multipart/form-data"> |
<input type="file" size="40" name="FILE1" /> |
<br /> |
<input type="submit" value="Upload!" /> |
</form> |
</body> |
</html> |
Article ID: 187, Created: August 6, 2012 at 11:47 PM, Modified: August 6, 2012 at 11:47 PM