On Monday 20 December 2004 12:24, Anish Kumar K. wrote:
> Hi
>
> Sorry this is not a question to post here...But searched the net for
> java servlet group didn;yt find much...
This is definitely not the right list for Java questions - I'd suggest to
search Google directly for answers to your question.
>
> I wnt to pass two values ina query string and then get the values in
> another serlvet using
>
> req.getQueryString()
You should be able to access request parameters in a servlet with something
like this ("request" being the name of the first parameter to your doGet()
method):
String value1 = request.getParameter("parameterName1");
String value2 = request.getParameter("parameterName2");
HTH,
Philipp
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>