CrystalAgentMan
Programmer
Hello all,
I have a simple test JSP page for passing a couple form TEXT inputs to a 2nd JSP that re-displays. Actually it does some DB work, and redirects back to 1st for re-disply; but i've created an even simpler implmentation that still doesn't work.
The problem is, IE is passing NULLs for all my field values, where other browsers are working like a charm. Is there something totally stupid that i've overlooked (PS : i've built many form pages before that worked).
****** INPUT PAGE ******
<form name="sample1" id="sample1" action="form_1_POST.jsp" method="post">
text 1 : <input type="text" name="text1" id="text1" maxlength="25" value="" />
<br />
text 2 : <input type="text" name="text2" id="text2" maxlength="25" value="" />
<br />
<input type="submit" value="submit" />
<input type="reset" value="reset" />
</form>
****** OUTPUT PAGE ******
text 1 : <%= request.getParameter("text1") %>
<br />
text 2 : <%= request.getParameter("text2") %>
... The output keeps showing NULL when done in IE....i DON"T GET IT
thanks for any insight.
I have a simple test JSP page for passing a couple form TEXT inputs to a 2nd JSP that re-displays. Actually it does some DB work, and redirects back to 1st for re-disply; but i've created an even simpler implmentation that still doesn't work.
The problem is, IE is passing NULLs for all my field values, where other browsers are working like a charm. Is there something totally stupid that i've overlooked (PS : i've built many form pages before that worked).
****** INPUT PAGE ******
<form name="sample1" id="sample1" action="form_1_POST.jsp" method="post">
text 1 : <input type="text" name="text1" id="text1" maxlength="25" value="" />
<br />
text 2 : <input type="text" name="text2" id="text2" maxlength="25" value="" />
<br />
<input type="submit" value="submit" />
<input type="reset" value="reset" />
</form>
****** OUTPUT PAGE ******
text 1 : <%= request.getParameter("text1") %>
<br />
text 2 : <%= request.getParameter("text2") %>
... The output keeps showing NULL when done in IE....i DON"T GET IT
thanks for any insight.