Ulrich I believe that is irrelevant and incorrect. JSP can retrieve POST values.
elisabeth,
What does the pop-up in Explorer say? I bet it's only one word. You need to assign HTML attribute values
surrounded in quotes, as it complies with the standards and should solve your problem.
So this...
<input type=hidden name="error" value=<%=res[0]%>>
...should be...
<input type='hidden' name='error' value='<%=res[0]%>'/>
Try it :-)
-Snib
<><
http://www.snibworks.com
There are only two stupid questions: the one you don't ask, and the one you ask more than once ;)