Hi all,

Can some one point my mistake. I have been working on this for the last 24
hrs.But could not figure out how to do it.

I have fir.jsp which runs fine.

<html>
<head>
<title>Hello, World</title></head>
<body>
<FORM METHOD="POST" ACTION="step22.jsp" name="fir">
<%
out.println("Hello World");
%>
<INPUT TYPE="text" NAME="mytext" VALUE=""> <!-- Problem is here --!>
<INPUT type="submit" NAME ="Next">
</form>
</body>
</html>

On submitting button it has to call step22.jsp. It doesnot call it, instead
it says
http://localhost:8080/examples/step22.jsp
connection to the server was reset.


But if I change <INPUT TYPE="text" NAME="mytext" VALUE="">
to <INPUT TYPE="text">
It works fine. Iam really bugged by this.


I have step22.jsp which is:
<html>
<head>

</head>
<body>
<%out.println("Hello World");%>
</body>
</html>

Any help will be highly appreciated

thank you in advance
Padmaja

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to