Description
Hi-performance, pure ASP file upload script with progress bar indicator.
Let's you upload multiple files with size up to 100th of MB to a disk or database (up to 10MB for free)
along with another form fields.
Features of Pure-ASP file upload
|
Downloads and links
PureASP upload - using, features, functionality, notes.
Download Free Pure-ASP upload with progress bar free ASP include and samples, v 2.0 (IIS3/IIS4/IIS5), v1.5 (VBScript v.5, IIS4-5), v1.3 (IIS3-5) Download this help (chm) Download 60 day evaluation version of HugeASP upload (Huge-ASP upload, ScriptUtilities library, help, samples) See Huge-ASP or Pure-ASP upload features compare. LicenseFreeware with limitted use
PureASP upload - using, features, functionality, notes. License page for Huge ASP file upload Other linksUpload FAQFrequently asked questions about Pure-ASP and Huge-ASP upload functionality. Classes
|
| ASPForm - The ASPForm collection retrieves the values of form elements posted to ASP script by a form. | |||||||
| FormFields - Contains collection of document fields of files. (Items property, Collection of all form fields (plain form fields and files)) | |||||||
| FormField - One form field. Member of FormFields collection. (Item property, Returns a specific member of a FormFields collection either by position or by key.) | |||||||
| FormFields - Contains collection of document fields of files. (Files property, Collection of all files in the source document.) | |||||||
| FormFields - Contains collection of document fields of files. (Texts property, Collection of all fields except files in the source document.) | |||||||
| ||
<%
'Create upload form
'Using Pure-ASP file upload
Dim Form: Set Form = New ASPForm %><!--#INCLUDE FILE="_upload.asp"--><%
If Form.State = 0 Then
Form.Files.Save "C:\Uploads"
Else
'Handle other form states.
End If
%>
<Body>
<form method=post ENCTYPE="multipart/form-data">
<input type="submit" value="Upload the files >>"><br>
<Div ID=files>
File 1 : <input type="file" name="File1"><br>
File 2 : <input type="file" name="File2">
</Div>
<Input Type=Button Value="+Add a file" OnClick=Expand()>
<Script>
var nfiles = 2;
Function Expand(){
nfiles++;
files.insertAdjacentHTML('BeforeEnd','<BR> File '+nfiles+' : <input type="file" name="File'+nfiles+'">');
}
</Script>
</Body> |
|