Another solution can be to open a URLConnection for the link
"http://hostname:8080/servlet/fsleads.leadDetail" which you have
& then open a output stream for that in which you can pass your parameters.
The sample code for invoking leadDetail servlet is::
URL url = new URL("http://hostname:8080/servlet/fsleads.leadDetail");
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
PrintWriter out = new PrintWriter(connection.getOutputStream());
out.print("column=abc");
out.close();
Now in the servlet leadDetail, read the parameter column by
String str = request.getParameter("column");
-Amit
>
> > -----Original Message-----
> > From: Meng, Dong J (CAP, CDI) [SMTP:[EMAIL PROTECTED]]
> > Sent: Wednesday, September 22, 1999 11:33 AM
> > To: [EMAIL PROTECTED]
> > Subject: How to pass value from one servlet to another servlet in the
> > link
> >
> > Hi.
> >
> > I have a servlet to present information from tables. One column link to
> > another servlet. When you click this column, it call another servlet, at
> > the
> > same time, it passes the value of this column to the servlet. Suppose the
> > value is abc. How can I put abc into the link <A HREF =
> > \"/geccd/servlet/fsleads.leadDetail\">, and how the anther servlet will
> > get
> > the value abc?
> >
> > Thanks.
> >
> > DJ
