I need to upload images using FileUpload without postback(using Ajax).I tried many examples.But in all postback is coming or they are using PHP.Can anyone help me to do single file upload or multi file upload using ajax in ASP.Net with C#.
8 Answers
SWFUpload
http://demo.swfupload.org/v220beta3/simpledemo/index.php
Javascript and Flash, there's no post-back :) and there's .NET implementations available on the site.
Comments
Hope you find this useful.
It's using asp.net and ajax.
Comments
As the others say you can't do it completely without a postback but you can add some nice ajax functionality around the process. Steve Sanderson has written a good walkthrough here:
http://blog.codeville.net/2008/11/24/jquery-ajax-uploader-plugin-with-progress-bar/
1 Comment
I use Ajax Uploader too. It works great for my projects and it allows you to upload files to web server without refreshing the page.
Here is a demo page.
Comments
There is no such thing as a ajax file upload. The components that you see either use flash swfupload or a hidden iframe that they post a form to that give the impression it is happening in an ajax manner. There are many plugins avaiable to help you do this. My favourite is this that uses jquery and swfupload
Comments
There is no way you can access the contents of a file input field through JS. This is because of security concerns. Though what you CAN do is to create an iframe and from a button submit only that iframe which again can contain your file input field...
This would give the "impression" of an Ajax File Upload control...
Comments
as other guys said,file upload needs postback.In any update panel ,you should register file upload control as postbackcontrol to scriptmanager.Also you may look telerik upload control to have an idea for what it should be.