You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Aiken, Weston - Raleigh, NC" <WA...@email.usps.gov> on 2002/08/21 20:46:01 UTC

Is there a struts tag to display a String that has been added to the
Request as an attribute, instead of adding an object with a property and
a getter?
 
Non Struts way:
 
<%=request.getAttribute("myattribute")%>
 
Struts way:
 
?
 
The bean:write tag wants an object with a getter and I simply want to
pass a String and pull it out to display it. 
 
Thanks