Asad Chohan
Asad Chohan

Reputation: 43

How to upload a file in asp.net without reloading a page

How to upload a file in asp.net without reloading a page

Upvotes: 4

Views: 1938

Answers (6)

Zuuum
Zuuum

Reputation: 1485

There are many ways to do this. but if you need some extended functionality try this sample.

Upvotes: 2

Radhi
Radhi

Reputation: 6339

try this

it uses jquery to upload multiple files... you can also download sample project which works fine.. and uploads files quickly. you may need to change your web.config to set lenght of data can be passed ... in the sample project...

Upvotes: 0

Eros
Eros

Reputation: 703

jquery-transmit is a sophisticated jQuery plugin providing an elegant multi-file upload utility. At the core of the plugin is a small SWF file which provides single or multiple file selection and upload services

Upvotes: 0

this. __curious_geek
this. __curious_geek

Reputation: 43207

You will need to perform asynchronous file upload using Ajax and send the file in chunks of bytes.

Authentic AsyncUpload in original AjaxConotrlToolkit

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AsyncFileUpload/AsyncFileUpload.aspx

Some other references that may interest you..

Upvotes: 5

Sangam Uprety
Sangam Uprety

Reputation: 1482

You should find a suitable ajax uploader. One wise choice would be a jquery ajax uploader. I hope this jquery ajax uploader, free download, would win your heart. All the best!

Upvotes: 2

TheVillageIdiot
TheVillageIdiot

Reputation: 40497

Here is a cross-browser script to upload file using ajax. You can search google for Ajax file upload and find out other tools and techniques if this one does not works for you.

Upvotes: 0

Related Questions