Hi all!
I have one oject on
jsp from where i have to pass it in <html:link> and render it on other one. There are attribute paramId and paramName through which bean can be set. I have passed one
string like--
<bean

efine id="foo" value="teststring"/>
<html:link forward="edit" paramId="userpass" paramName="foo" scope="request">Edit</html:link>
and rendered it on other jsp --
<% out.println(request.getParameter("userpass"));%>
but in case of any object say user of class User How to do that and how i will get it on other jsp?