Hi,

     I have just started using JSP. I have the following two files:

test.htm
~~~~~~~~~
<html>
<body>
<a href="test.jsp?f1=field1&f2=field2">TEST ME</a>
</body>
</html>

test.jsp
~~~~~~~
<html>
Received : field value1 -> <%= request.getParameter("f1") %>
Received : field value2 -> <%= request.getParameter("f2") %>
</html>

When a click on 'TEST ME' execute test.htm, I am getting the following
error:

Invalid link 'test.jsp?f1=field1&f2=field2'

Can anybody give some suggestions to solve this problem.

Thanks
KV Srinivas Kumar

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