how to i display my bean using the tags included in struts if my bean is like this: 
<code>
public class Person{
PersonInfoBase personinfo;
ContactInfoBase contactinfo;
....
} 

public class PersonInfoBase{
getLastName();
getBirthdate();
....
} 

public class ContactInfoBase{
getAddress();
getZip();
....
}
</code> 

How do i display like address or lastname is i put the class person in the 
session.attribute: 

<code>
Person person = new Person();
request.setAttribute("person",person) 
</code> 

Can someshow show me how wil the jsp looks like. 

thanks a lot in advance.

Reply via email to