sending object amoung jsp
hi,
i am trying to send an object from a jsp when i click on a link,and take the object to other jsp.and i have lots of links, and have lots of objects mapping to each link.i must understand which link was clicked and so which object to show on the forwarded jsp.
i am working with struts and myeclipse.
best wishes...
# 2
[nobr]thank for your attention,
i thought to use request object but i don't know where to set the request object, i try to put on this code segment to understand which link is clicked...
*****************************************************************************
[code] for (int i=0;i<list.size();++i)
{
etkinlik=(Etkinlik)list.get(i);
etkinlikAdi=etkinlik.getEtkinlikAdi() + "";
etkinlikafis=etkinlik.getAfis();
System.out.println(etkinlikafis);
%>
<center><img alt=" -- " src=<%=etkinlikafis %>>
<html:link forward="etkinlik"><%= etkinlikAdi%> </html:link>
</center>
<%
}[/nobr]