Hi I would like to upload files in an asp.net application. I know of the ASPUpload component from Persits. Does asp.net include any upload component like this one? If not, what technique would you recommend using? Bjorn
You could try http://www.abcupload.com from websupergoo. asp.net provides very basic upload support in the sense that you can access the posted file and save it - but it doesn't provide anything fancy like a % uploaded etc.
Read my blog http://blog.davidyack.com
New Silverlight 3 Book - http://www.silverlightjumpstart.com
Thanks for the info. Where can I find the class that supports this simple upload functionality? Would you recommend the ABC instead of Persits? Thanks again!
The System.Web.UI.HtmlControls.HtmlInputFile class is the simple control for uploading files. Handling the uploaded file is as simple as using the PostedFile property of the control. It's a simple wrap around the standard input type="file" html element. You
can also look at my free
FileUpload control, which is also just a wrapper for the input type="file" html element. My control is a little better than the built in one, as I offer an event for when the file is uploaded.
fys96bom
Member
10 Points
2 Posts
Upload component
Jul 21, 2003 01:55 AM|LINK
MrDave
Participant
877 Points
177 Posts
MVP
Re: Upload component
Jul 21, 2003 06:54 AM|LINK
Read my blog http://blog.davidyack.com
New Silverlight 3 Book - http://www.silverlightjumpstart.com
fys96bom
Member
10 Points
2 Posts
Re: Upload component
Jul 22, 2003 04:13 AM|LINK
Andy Smith
Participant
1910 Points
380 Posts
ASPInsiders
Re: Upload component
Aug 07, 2003 06:35 PM|LINK