HTML upload a file

  • Thread starter Thread starter Jacques Cooper
  • Start date Start date
J

Jacques Cooper

Hello,

How do I upload a disk file using HTML?
For example, many job boards allow you to upload
your resume to their site.

Thanks,
Jacques
 
Hi Jacques,

Thanks for posting in this group.
The Type=File html attribute for input tag only provide you the client side
support for uploading files.
In server side, you still must perform support for the uploading.
In asp.net, it is easy to handle this in server side, the link below
teaches you how to hanlde this in C#:
http://support.microsoft.com/default.aspx?scid=kb;en-us;323246

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Jacques Cooper" <[email protected]>
| Subject: HTML upload a file
| Date: Sat, 15 Nov 2003 14:06:28 -0800
| Lines: 10
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: omega.jcsoftware.net 66.15.15.165
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP11.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:199607
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| Hello,
|
| How do I upload a disk file using HTML?
| For example, many job boards allow you to upload
| your resume to their site.
|
| Thanks,
| Jacques
|
|
|
 
Back
Top