if you have only one parameter you can pass it as the query string as you
did, but in this case to get the info you use request.getQueryString()
if you want to pass more then one parameter or to use the getParameter
method you need to give names to the parameters.
use: <a href="a.jsp?param1=<%= value %>"> and request.getParameter
("param1")

lee

-----Original Message-----
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of R.B. Gurung
Sent: Thursday, May 27, 1999 1:29 PM
To: [EMAIL PROTECTED]
Subject: HttpSession/QueryString/Hashtable


I am passing vale using Querystring
<a href="a.jsp?<%=value%>"></a>

but using    getParameter  stops my  Tomcat Server also I am trying to pass
Hashtable with data which is stored into session
to retrieve it in "a.jsp" getting error .
is it possible

thanks/regards

gurung

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