I'm using AJAX functionality to submit a form which contains a FileUpload control.
How can I reset the FileUpload (ie. remove the File listed) in code?
I do the same thing for a TextBox, which obviously has as easier way to set it back to the default...
TextBox.Text = "";
But The FileUpload doesn't have a similar option. Any ideas?
Thanks!