Right, this is option #2. x:aliasBean simply allows you to redefine the backing beans used by your included piece of code and uses f:subview instead of f:view.
On 7/28/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Thank you for your time. I am going to weight each of these options w/ the > one I just thought of below. > > Familiar w/ tag files? Try this, it'll take 2 minutes. Create a tags dir > under WEB-INF . Put these lines in a file called Test.tag . > > <[EMAIL PROTECTED] uri="http://java.sun.com/jsf/html" prefix="h" %> > <[EMAIL PROTECTED] uri="http://java.sun.com/jsf/core" prefix="f"%> > > <f:view> > <h:outputText value="a"/> > <h:outputText value="b"/> > </f:view> > > ... in your JSP put these two lines. > > <[EMAIL PROTECTED] prefix="project" tagdir="/WEB-INF/tags" %>f:view> > <project:Test /> > > Dennis Byrne >

