What ur doing is, writing an html file A.html and then calling a servlet
and then displaying a
jsp page(??).For ur requirement, u don't even have to write a servlet(the
jsp will do it for u).
The following code should do.
Ur page should be A.jsp
<html>
<form name=myform action="A.jsp">
<body>
<input type=text name=myname>
<% if(request.getParameter("myname") != null)
<% out.println(request.getParameter("myname"); %>
</form>
</body>
</html>
hope this helps.
Bye,
Hari.

===========================================================================
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