File uploading in AJAX updatepanel without full postback - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:36:58Z http://stackoverflow.com/feeds/question/797190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback 6 File uploading in AJAX updatepanel without full postback Muhammad Akhtar 2009-04-28T10:13:51Z 2009-10-06T12:00:24Z <p>I have a update panel, in the update panel I have fileupload control and button control, On button click, I need the file that I have upload in the fileupload control in updatepanel. </p> <p>Exact scenario, I have 8 tabs on page, each tab contains too much information, One of the tab is Attachment, when user click on Add New Attachment Modal Popup shown, Modal contains detailsview in Updatepanel and in the detailsview I have fileupload control, when user hit <strong>save</strong> button, <strong>detailsview inserting event</strong> fired, In the inserting event I need the file that I have upload. <br/>Please Note, My page is heavy and I don't want full postBack.</p> <p><br>Does anyone have solution of this issue? </p> <p>Advance thanks for your kind help.....</p> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/797212#797212 4 Answer by AnthonyWJones for File uploading in AJAX updatepanel without full postback AnthonyWJones 2009-04-28T10:19:21Z 2009-04-28T10:19:21Z <p>Can't be done without co-operating binaries being installed on the client. There is no safe mechanism for an AJAX framework to read the contents of a file and therefore be able to send it to the server. The browser supports that only as a multipart form post from a file input box.</p> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/797245#797245 18 Answer by Soul_Master for File uploading in AJAX updatepanel without full postback Soul_Master 2009-04-28T10:27:18Z 2009-06-12T03:51:22Z <p>For solve this problem, Please see the following step.</p> <ol> <li><strong>Add ajax-upload to your detail view.</strong> <ul> <li><em>iframe-based uploader</em> like Resource#1.</li> <li><em>Silverlight-based &amp; Flash-based uploader.</em> I like this technique because it doesn't require any server-side script for display current upload status. But in HTML5, you can create this without using any web browser plug-in.</li> <li><em>Commercial uploader like Resource#2.</em> that use hidden iframe for uploading.</li> </ul></li> <li><p><strong>Upload file to temporary location.</strong> </p> <ul> <li><em>System response the temporary location.</em> Next, client keep temporary location in hidden input in detail form.</li> <li>*Keep temporary location with session_id.* You can store it in database or Session variable depend on your framework.</li> </ul></li> <li><p>When you click on the save button, the system will move the files to their real location</p></li> </ol> <p>Note. System will automatically delete the expired file from the temporary location.</p> <p><em>Resource</em></p> <ol> <li><a href="http://mattberseth.com/blog/2008/07/aspnet%5Ffile%5Fupload%5Fwith%5Frealti%5F1.html" rel="nofollow">ASP.NET File Upload with <em>Real-Time</em> Progress Bar</a></li> <li><a href="http://ajaxuploader.com/Demo/default.aspx" rel="nofollow">ASP.NET File Upload like GMail (Commercial)</a></li> </ol> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/964260#964260 0 Answer by OneSHOT for File uploading in AJAX updatepanel without full postback OneSHOT 2009-06-08T10:31:07Z 2009-06-08T10:43:27Z <p>The sites you see that do provide this functionality generally use flash or an iframe so that the postback occurs in the iframe and gives the illusion of an ajax request.</p> <p>HTH </p> <p>OneSHOT</p> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/964600#964600 0 Answer by chris for File uploading in AJAX updatepanel without full postback chris 2009-06-08T12:08:04Z 2009-06-08T12:08:04Z <p>Not sure I agree with @OneSHOT - take a look at how kijiji does image uploads, for one example. </p> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/972236#972236 1 Answer by Jaime for File uploading in AJAX updatepanel without full postback Jaime 2009-06-09T20:08:22Z 2009-06-09T20:08:22Z <p>The problem is with the way the HTML file upload control works, has nothing to do with ASP.net, for the file upload control to work you need a full post of the form data. You can only simulate that your are not doing a full postback, by doing all the operation in a hidden iframe that does the actual uploading</p> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/982885#982885 0 Answer by ScottE for File uploading in AJAX updatepanel without full postback ScottE 2009-06-11T18:41:21Z 2009-06-11T18:41:21Z <p>I've tried swfupload (<a href="http://swfupload.org/" rel="nofollow">http://swfupload.org/</a>), but do keep in mind that you have to jump through hoops if you're using forms authentication with non-IE browsers. This is apparently a flash bug, and it's not fixed in flash 10. I decided against using it in our framework because of this bug, but it was otherwise a great product.</p> http://stackoverflow.com/questions/797190/file-uploading-in-ajax-updatepanel-without-full-postback/984795#984795 0 Answer by Larry K for File uploading in AJAX updatepanel without full postback Larry K 2009-06-12T03:01:07Z 2009-06-12T03:01:07Z <p>I recommend the uploader widget from YUI. See <a href="http://developer.yahoo.com/yui/uploader/" rel="nofollow">http://developer.yahoo.com/yui/uploader/</a></p> <p>I think you could use it to accomplish your goal. Your javascript would need to fetch the file back down to the client from the server after it completed its upload. But the page would not refresh--the upload is through flash and a hidden iframe. The download to show the file's contents to the user would be via ajax.</p> <p>If the user does not "approve" the upload, then simply make another ajax call to the server to delete the file.</p>