You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Edward Dowgiallo <Ed...@gmail.com> on 2004/10/21 18:00:18 UTC

I have a really simple question that is holding me up.

<jsp:include page="x.jsp">
    <jsp:param name="title" value="PROJECT" />
</jsp:include>

On x.jsp:
    <h:outputText value="#{title}" /> does not find title.
    <h:outputText value="#{param.title}" /> does not find title.

What is the syntax to access title in a JSF expression?

Thank you,
Ed