Hi all, I have an action property holding a key in a properties file. In the view page, I like to display the value of the key. Since struts tags only accept plain text as attribute values, I can only render the key in the view like this: <s:property value="varHoldingKey"/>
Using <s:property value='getText("varHoldingKey")"/> is NOT allowed because of syntax error. Is there a way to display the key's value? Thanks.