Skip to content Skip to sidebar Skip to footer

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:

jQuery File Upload

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.

Look at this or this

HTH

Post a Comment for "Upload A File Via A Form Using Asp"