Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / ATL
Article

Advanced ASP Uploader

Rate me:
Please Sign up or sign in to vote.
4.95/5 (17 votes)
28 Aug 20013 min read 440.5K   7.5K   61   80
An advanced COM component that provides file upload capabilities for your ASP pages.

Introduction

Browser-based (HTTP) file uploading is a great way to transfer arbitrary files from a client machine to the Web server which adds another dimension to Web-based applications. However, to enable this feature the client form should be submitted using "multipart/form-data" encoding.

Unfortunately, the ASP Request.Form object cannot be used with this encoding type (currently). For this reason, many solutions have been provided by third party components to solve this problem. However, most of these third party components suffer from one or more of the following problems:

  1. Discarding other important form data which are not related to the uploaded file.
  2. No support for multiple file uploading.
  3. Inconsistent interface to the existing Request.Form interface.
  4. No support for chunk data reading from the uploaded file (helpful on uploading a large. file into a BLOB field in a database using AppendChunk in an ADO Recordset object).

For these reasons, I have developed a COM object that users can use instead of Request.Form in case of a "multipart/form-data" encoding.

While developing this COM object, I have tried to avoid falling into any of the previous mentioned problems. However, the solution that I am providing will not totally replace Request.Form, rather it will be a complementary solution that users can use incase of a "multipart/form-data" encoding as I mentioned earlier. Users can still use Request.Form for other encoding types, however.

What is multipart/form-data?

This "multipart/form-data" type of encoding is described in RFC1867 which describes how file uploading should be implemented over HTTP protocol. To enable file uploading the form enctype should be set to multipart/form-data and the method should be set to post. Then the input tag should be of type file.

For the previous form here is the required code

<form method=post action=upload.asp enctype="multipart/form-data">
<input name=name value="Al-Mutairi, Fayez">
<input name=email value="fayezmm@yahoo.com">
<input name=file type=file>
<input name=submit type=submit value=Submit>
</form>

When the user clicks the submit button the web server will receive the following:

-----------------------------7d1f5a80420
Content-Disposition: form-data; name="name"

Al-Mutairi, Fayez
-----------------------------7d1f5a80420
Content-Disposition: form-data; name="email"

fayezmm@yahoo.com
-----------------------------7d1f5a80420
Content-Disposition: form-data; name="file"; filename="C:\folder_icon.gif"
Content-Type: image/gif

GIF89a2 2 ³ÿ ÿÿÿÌÌÿ™™ÿffÌUUUDDD33f"""                        ,    2 2 @
éÈI«½8ëÍ»¯H Ž" … ,‹|]HÎ49 7ì!Å Ô³[NGÔ Ž‡CqÉl:‹¯Sê'@žfB©<¯§v
†±ž
φC$
„+zN¯Ûün$u§/z-Vvc@*<,{bdd UX†ŽlCb=?•#f|jš4fqŒžŸ=>fo¦­®¯°±²³N
G¬´Ÿ<_z³2ˆT„Á…\R_-ƒ¥µÆ+ƒs"‡ÍŠÃMÑŽ]*gÖ›5ÝAm"áâ—Ökå/ßh Ýìuî[£­ò–npÊ…™"
ª(úø¨ió/ ®ƒ*¬/ ;
<!--"-->
-----------------------------7d1f5a80420
Content-Disposition: form-data; name="submit"

Submit
-----------------------------7d1f5a80420--

At this time when upload.asp started it cannot access the form data using Request.Form So it should use a third party component for help. The component will read the previous request, parse it and build a collection of items that can be accessed in a similar fashion to accessing Request.Form items.

How To Use the Component

Let us build upload.asp using our MyRequest.Form component

<%@ LANGUAGE="JScript%">
<%
    var form = Server.CreateObject("MyRequest.Form");
    form.Init();
    Response.Write("Name =" + form("name"));
    Response.Write("Email =" + form("email"));
    var file = form.Item("file").Item(1);
    Response.Write("FileName =" + file.FileName);
    Response.Write("FileExt  =" + file.FileExt);
    Response.Write("FilePath =" + file.FilePath);
    Response.Write("MimeType =" + file.ContentType);
    Response.Write("FileSize =" + file.TotalBytes);

    // ** To save into a file use Write method of the ADO Stream Object
    var fileStream = Server.CreateObject("ADODB.Stream");
    fileStream.Open();
    fileStream.Type = adTypeBinary;
    fileStream.Write(file.Value);
    fileStream.SaveToFile(Server.MapPath("Uploaded Files") + "\\" + file.FileName, adSaveCreateOverWrite);
    fileStream.Close();

    // ** To save into a database use AppendChunk method of the Field Object of ADO Recordset
    var cn = Server.CreateObject("ADODB.Connection");
    var rs = Server.CreateObject("ADODB.Recordset");
    cn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("Database.mdb"));
    rs.Open("Users", cn, adOpenForwardOnly, adLockOptimistic, adCmdTable);
    rs.AddNew();

    rs.Fields("id") = 1000;
    rs.Fields("name") = form("name").Value;
    rs.Fields("email") = form("email").Value;
    rs.Fields("FileType") = file.ContentType;
    rs.Fields("file").AppendChunk(file.Value);

    rs.Update();
    rs.Close();
%>

Interfaces


Here is the IForm Interface

MethodDescription
Init(VARIANT varBinary) Initialize the form with posted data. varBinary is optional it is =Request.BinaryRead(Request.TotalBytes)
Item(VARIANT Index, IListItem** ppItem) (Default method) Returns the ListItem object with the specified key either as the item name or index.
Count(long* pVal) Number of listitem's objects.

Here is the IListItem Interface

MethodDescription
Value(VARIANT* pValue) (Default method) Item's value.
Item(long lIndex, IItem** ppItem) Returns the Item object with the specified index.
Count(long* pVal) Number of item's objects.
Name(BSTR* pName) Item's name.

Here is theIItem Interface

MethodDescription
Value(VARIANT* pValue) (Default method) Return the value of the item.
IsFile(BOOL *pVal) Return TRUE if the Item object is a file otherwise it returns FALSE.
FileName(BSTR *pVal) The name of the uploaded file. AVALIABLE ONLY if object is a file.
FilePath(BSTR *pVal) The path of the uploaded file. AVALIABLE ONLY if object is a file.
FileExt(BSTR *pVal) The extension of the uploaded file. AVALIABLE ONLY if object is a file.
ContentType(BSTR *pVal) The content-type (MIME TYPE) of the uploaded file. AVALIABLE ONLY if object is a file.
TotalBytes(long *pVal) Size in bytes of the uploaded file. AVALIABLE ONLY if object is a file.
GetChunk(long offset, long length, VARIANT* pChunk) Return a chunk of the file with the specified size and position. AVALIABLE ONLY if object is a file.

Further Help

Additional help is supplied with the demo project zip file which includes documentation !

Special thanks to Xicoloko who wrote http://www.codeproject.com/asp/uploader.asp which give me a push to also build my own component but this time (Complete).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionneed help setting up the script Pin
Member 1460163123-Sep-19 15:21
Member 1460163123-Sep-19 15:21 
QuestionThis doesn't work with Webkit based browsers Pin
GPATI17-Jun-13 2:53
GPATI17-Jun-13 2:53 
Questionmultipart parsing without the upload/post part Pin
Luka9-Jan-12 4:33
Luka9-Jan-12 4:33 
Questionhow to register myrequest.dll on SQL Server 2005 or Vista Home Basic Pin
Mekoder20-Sep-07 0:52
Mekoder20-Sep-07 0:52 
AnswerRe: how to register myrequest.dll on SQL Server 2005 or Vista Home Basic Pin
pawandhir24-Jun-09 5:50
pawandhir24-Jun-09 5:50 
GeneralProblem compiling Pin
jerry Scannell6-Nov-06 14:38
jerry Scannell6-Nov-06 14:38 
GeneralMyRequest.Form init error Pin
choijung7120-Jul-06 22:42
choijung7120-Jul-06 22:42 
GeneralWrite file error Pin
LienKim10-Feb-06 16:25
LienKim10-Feb-06 16:25 
GeneralRe: Write file error Pin
Visible Soul30-Mar-06 0:42
Visible Soul30-Mar-06 0:42 
GeneralError "Server.Object" Pin
Shefa15-Jan-06 5:37
Shefa15-Jan-06 5:37 
GeneralRe: Error "Server.Object" Pin
Adhan8-Feb-06 22:35
Adhan8-Feb-06 22:35 
hi...

in this case u should to register the component (.dll). find in directory /bin and run install.exe
Poke tongue | ;-P
regard,

Adhan
GeneralSelect/Options - How does one handle them Pin
dougcranston5-Dec-05 5:41
dougcranston5-Dec-05 5:41 
GeneralConvert JScript example to VBScript Pin
Member 219955418-Aug-05 7:14
Member 219955418-Aug-05 7:14 
GeneralRe: Convert JScript example to VBScript Pin
Member 219955418-Aug-05 8:32
Member 219955418-Aug-05 8:32 
GeneralRe: Convert JScript example to VBScript Pin
Member 219955418-Aug-05 10:22
Member 219955418-Aug-05 10:22 
GeneralRe: Convert JScript example to VBScript Pin
Member 219955418-Aug-05 10:57
Member 219955418-Aug-05 10:57 
GeneralError while creating object of MyRequest.DLL Pin
Tejal Mehta15-Jun-05 23:35
Tejal Mehta15-Jun-05 23:35 
GeneralRe: Error while creating object of MyRequest.DLL Pin
pawandhir24-Jun-09 5:52
pawandhir24-Jun-09 5:52 
QuestionHow to open file from database? Pin
knight_zhuge5-Aug-04 16:15
knight_zhuge5-Aug-04 16:15 
General'adTypeBinary' is undefined Pin
Vexez14-Jun-04 17:12
Vexez14-Jun-04 17:12 
Generalerror : Det virker ikke en skid Pin
madspaaskesen25-Jan-04 7:18
madspaaskesen25-Jan-04 7:18 
GeneralRe: error : Det virker ikke en skid Pin
Sketch18-Nov-04 4:22
Sketch18-Nov-04 4:22 
GeneralProblem solved Pin
Sketch24-Nov-04 8:17
Sketch24-Nov-04 8:17 
GeneralFile upload error Pin
Popeye Doyle Murray14-Aug-03 7:47
Popeye Doyle Murray14-Aug-03 7:47 
GeneralRe: File upload error Pin
repressedRadar15-Aug-07 5:09
repressedRadar15-Aug-07 5:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.