First of all, I am sorry that my english is short.
I want to upload a file to a server.
usually we use
<?
<input type=file name=image .....>
?>
But I want to change the name of file in process. that is,
I tried to use like this
(1)<input type=file name=image value=c:\name.jpg>
(2)
<script language=javascript>
function cc(){
document.rform.image.value="c:\name.jpg";
alert(document.rform.image.value);
}
</script>
..
<input type=file name=image>
<input type=button name=xx onclick=cc()>
..
BUT it did not work.
I really want to fix the name of file which would be uploaded.