Upload A File Via A Form Using Asp
I have a simple html form in a .asp page. I would like add a field to let users upload files via the form on my server/ftp on the fly. Any suggestions on how I can do this please?
Solution 1:
You could try the following jQuery plugin to handle 'on the fly' uploads:
But like Symeon said, you will need an ASP Classic component that will handle the file uploads on the server. I used the FreeASPUpload version a couple of times, works like a breeze.
Solution 2:
In ASP you have to write your own upload handler to take the http stream and write it to disk - there is plenty of example code on the web. I have some, but it is a bit big to post here.
HTH
Post a Comment for "Upload A File Via A Form Using Asp"