Tuesday, May 24, 2011

Clear the File upload control value using Javascript

Hi,

If you want clear the file upload control value use the following code.

// To Clear the value in File Upload(For IE and Firefox)
var oFileUpload=document.getElementsByName('<%=fuUserList.UniqueID%>')[0];
oFileUpload.value="";
var oFileUpload2= oFileUpload.cloneNode(false);
oFileUpload2.onchange= oFileUpload.onchange;
oFileUpload.parentNode.replaceChild(oFileUpload2,oFileUpload);

No comments:

Post a Comment