More than a view in a jsp
Hi!
I have one question: can I put more than one view (<f:view>) in a jsp? I mean:
greeting.jsp
<f:view>
<h:form ...>
</h:form>
</f:view>
<f:view>
<h:form...>
....
</h:form>
</f:view>
That doesn't show the page properly but it isn't any error!
This would throw an error, because there are two views with the same viewId... am I wrong?
thanks

