how to putput a property of an object in session? (jsp/struts)
Guys,
I have an object (myGroup) that consist of 2 properties: groupName and groupTitle. The object is in a session called group_session.
On my jsp page, I would like to output the property groupName on the text field associated with the groupName:
<html:text property="name"
value=?
size="45"
maxlength="60" />
<html:errors property="name" />
Q: how can I output the value of the groupName in the value section?
thanks

