How can I get an ASP.net web form (v3.5) to post a file using a plain old <input type="file" />?
I am not interested in using the ASP.net FileUpload server control.
Thanks for your suggestions.
|
1
|
How can I get an ASP.net web form (v3.5) to post a file using a plain old I am not interested in using the ASP.net FileUpload server control. Thanks for your suggestions.
|
||
|
|
|
|
In your aspx :
In code behind :
|
||
|
|
|
|
The Request.Files collection contains any files uploaded with your form, regardless of whether they came from a FileUpload control or a manually written So you can just write a plain old file input tag in the middle of your WebForm, and then read the file uploaded from the Request.Files collection. |
||
|
|
|
|
You'll have to set the |
||
|
|
|
|
use the HTML control with a runat server attribute
Then in asp.net Codebehind
There are also some 3'rd party options that will show progress if you intrested |
|||
|
|
|
|
Here's a Code Project article with a downloadable project which purports to solve this. Disclaimer: I have not tested this code. http://www.codeproject.com/KB/aspnet/fileupload.aspx |
||
|
|
|
|
I've used this all the time. |
||
|
|