I'm looking for free asp.net async file upload control (ajax, not flash or silverlight) , which display list of uploaded files. Could anybody help me?
1 Answer
Please have a look at Microsoft's AJAX AsyncFileUpload control.
5 Comments
Alexandre
It can't display list of uploaded files.
Muhammad Akhtar
Look at this implementation example, where you will see the image mikeborozdin.com/post/…
Alexandre
Where is the image? Point me.
Muhammad Akhtar
protected void ProcessUpload(object sender, AjaxControlToolkit.AsyncFileUploadEventArgs e) { string fileName = Server.MapPath("./") + "image.jpg"; AsyncFileUpload1.SaveAs(fileName); ScriptManager.RegisterClientScriptBlock(AsyncFileUpload1, AsyncFileUpload1.GetType(), "img", "top.document.getElementById('imgUpload').src='image.jpg';", true); }
Alexandre
How can this code helps me to display list of uploaded files?