<html>
<body>
<form name=f>
<input name=op1>
<input type=file name=op2>
</form>
<script language=javascript>
f.op1.value='qwert';
f.op1.focus();
</script>
<input type=submit onclick="javascript:f.op1.focus();paste();">
</body>
</html>
i need creat a new html page with initial value of file field.
how to do that????
<body>
<form name=f>
<input name=op1>
<input type=file name=op2>
</form>
<script language=javascript>
f.op1.value='qwert';
f.op1.focus();
</script>
<input type=submit onclick="javascript:f.op1.focus();paste();">
</body>
</html>
i need creat a new html page with initial value of file field.
how to do that????