On Dec 29, 2005, at 9:40 AM, Andreas B. Thun wrote:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<tiles:useAttribute id="selectedCountry"
classname="java.lang.String" name="selectedCountry"/>
<%
String country = selectedCountry + "something";
%>
Try this:
<%
String country = (String) pageContext.findAttribute
("selectedCountry") + "something";
%>
I'm pretty sure Tiles places these attributes in page context and
does not create JSP variables for them.
Greg
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]