jsf 2 - How to replacement "<%=" from jsp to jsf2 page -
this question has answer here:
i have jsp page code :
<f:verbatim><%=printpassedparam(request)%></f:verbatim>
printpassedparam
returns string
type. (it return html tags)
wanna migrate jsf2, how replace <%=
in xhtml page ?
thanks in advance
i did using "h:outputtext" this. it's working :)
<h:outputtext escape="false" value="#{page.beanname.printpassedparam()}"/>