The problem's in your opening tag: <jsp:forward page="somejspfile.jsp"/>.
Delete the forward slash and it should work fine (<jsp:forward
page="somejspfile.jsp">).

Jim Huffsmith
Dove Solutions
641-469-5877 x103


-----Original Message-----
From: /servlet-interest Vishwanath Naveen
[mailto:[EMAIL PROTECTED]]
Sent: None
To: [EMAIL PROTECTED]
Subject: Problem with <jsp:param> tag


Hi,

   I am unable to retrieve the value of the parameter that i am using in
<jsp:param> tag.I am using this with <jsp:forward> tag.
the code is
<jsp:forward page="somejspfile.jsp"/>
<jsp:param name="somename" value="somevalue">
</jsp:forward>
In the calling jsp file i am using String s =
request.getParameter("somename");
But this always returns me a null value.
Can somebody help me out?
Thanx.


*****************
Go to:
www.NetWala.com  " The Internet in every wallet "

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to