RE: File-Upload - empty after validation

2002-04-26 Thread Rooms, Christoph
-Original Message- From: Witbeck, Shane [mailto:[EMAIL PROTECTED]] Sent: donderdag 25 april 2002 15:38 To: [EMAIL PROTECTED] Subject: RE: File-Upload - empty after validation A good alternative to the struts file upload servlet is the one from servlets.com: http://servlets.com/cos/index.html I

File-Upload - empty after validation

2002-04-25 Thread Rooms, Christoph
Hi, I have a html:file tag in my form. The user selects a file, press submit ... And because of validation errors he will see the form to re-edit it. BUT the file field is empty. I know this has got something to do with Internet Explore because you can see the file refence in the htmlcode.

RE: File-Upload - empty after validation

2002-04-25 Thread Witbeck, Shane
: [EMAIL PROTECTED] phone: 904.987.1688 -Original Message- From: Rooms, Christoph [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 5:39 AM To: 'Struts Users Mailing List' Subject: File-Upload - empty after validation Hi, I have a html:file tag in my form. The user selects a file

AW: File-Upload - empty after validation

2002-04-25 Thread Hans-Joachim Matheus
Hi Christoph Von: Rooms, Christoph [mailto:[EMAIL PROTECTED]] I have a html:file tag in my form. The user selects a file, press submit ... And because of validation errors he will see the form to re-edit it. BUT the file field is empty. There is no workaround. The local file path

RE: File-Upload - empty after validation

2002-04-25 Thread dhay
: David Hay/Lex/Lexmark) Subject: RE: File-Upload - empty after validation A good alternative to the struts file upload servlet is the one from servlets.com: http://servlets.com/cos/index.html I am currently using it in a project to upload images and it works great. Sincerely, Shane Witbeck

Re: File-Upload - empty after validation

2002-04-25 Thread matt_raible
This *would* be possible using cookies and javascript if you could set the value of an input type=file element, but this is against the rules of the html-spec, so no go. I'm sure there is a way to workaround it, like setting the filepath as a cookie and then rendering an input type=text - but