grayworld - 2006-02-07

HI
Maybe my question is out of the topic discussed here , but i really got stucked and will appreciate any help . Where should i post this question ?
I used html parser to automatically creat a file upload form , like this :
<form action="upload.jsp" method="post" enctype="multipart/form-data" name="postde">

<input type="file" name="fileupload"  />   
<input type="submit" value="upload now!"  />                         
</form>
My perpose is to creat a file form to automatically point to a file that is in my local drive (such as c:\file.dat) . That means I will only have to click on the submit button to upload the file without choosing a file from the "browse file" button of the input file tag .
Thanks alot to any help or suggestion .

Grayworld .