How to use Dundas Upload ?

The following code demonstrates how to populate the Upload control's collections, save uploaded files to disk and retrieve form data. Please note that for brevity we do not perform any error checking
 
We will assume that a form with an encoding type of "Multipart/Form-Data" is POSTING to the ASP page which contains the following code:
 
1 . <%
2 . Dim objUpload
3 . Set objUpload = Server.CreateObject("Dundas.Upload.2")
4 . objUpload.Save "c:temp"
5 . strName = objUpload.Form("txtName")
6 . strSize = objUpload.Files(0).Size
7 . Set objUpload = Nothing
8 . %>
 
Explanation According to Line
1 . Open ASP tag
2 . Declare a variable named objUpload
 
3 . Create instance of Upload control
4 . Save uploaded files to to disk specified by physical path
5 . Retrieve the value of a form element called txtName
6 . Retrieve the size of the first uploaded file
7 . Release resources
8 . Close ASP 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 =...

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...

How to use ASPUpload ?

AspUpload is a COM+ component which enables an ASP application to capture, save and process files...