One way would be to put all the relevant objects in
your session or context as  java beans.
Now code all the links as http get request eg.
http://www.../x.jsp?name1=firstbean etc.

Now in x.jsp you can retrieve the bean and their
respective attributes.
Hope this helps

Prabhat
--- Vineet Sethi <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am dynamically generating rows of data using the
> following code :The tags have been distorted for
> those who get the mails in HTML
>
>  <startjsptag
>         for (int i=0; i<myvector.size() ; i++)
>           {
>             MYCLASS  myclassobj= (MYCLASS)
> myvector.elementAt(i);
>
>         endjsptag%>
>    <t row>
>      <t data >
>             <..a.. href ="processing.jsp"
>                  <.%. = myclassobj.getAttribute1()
> .%.>
>             </..a.. ></t data >
>    </t rrow>
>   <startjsptag
>         }
>   endjsptag>
>
> The above will give me rows of information.
>
>
> example
>
>              name1
>              name2
>              name3 , which are all instances of the
> same object MYCLASS.
>
> on click of the link , of the name , I wish to pass
> the respective instance of the MYCLASSS object to
> the next page, so that all the related attributes
> can be accessed.
>
> Please advise.
>
> Thanks in advance
>
> Vini
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with
> body: "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body:
> "set JSP-INTEREST DIGEST".
> 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


__________________________________________________
Do You Yahoo!?
Yahoo! Photos - Share your holiday photos online!
http://photos.yahoo.com/

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
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