How to edit input type="file" value="" area... I want to upload my custom file.
My Sample:
<form ENCTYPE="multipart/form-data" action="xmlupload" method="post" name="form1" id="form1" >
<input type="file" name="xmlupload" value="myCustom.xml" />
<input type="button" name="btnSubmit" value="send" onclick="form1.submit();">
</form>
How to edit type=file value="" (javascript or html) ?