Can i (in IE) set a value to 'value' proberty of the filefield form element. if yes how i can do that, and what updates should i do to send file to the server and copy it. thank you...
myusername -
Your question is unclear. Are you talking about providing a default value for <input type="file"> fields?
Client side problem? Client side forum! TA-DAAA!
You can not set the value attribute of input file elements. If you could, this would implicate a huge security problem as it would be quite easy to program a page that grabs files from the users machine without him knowing it.
No browser will allow Javascript to modify an <input type="file"
This is obvious from a security point of view, as if it could, the application would be able to upload arbitrary local files without the user's authorisation.
Mark