0

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

1 Answer 1

1

Please have a look at Microsoft's AJAX AsyncFileUpload control.

Sign up to request clarification or add additional context in comments.

5 Comments

It can't display list of uploaded files.
Look at this implementation example, where you will see the image mikeborozdin.com/post/…
Where is the image? Point me.
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); }
How can this code helps me to display list of uploaded files?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.