vote up 0 vote down star

I'm using JSF in NetBeans. All I want to do is to include a page within another page. But whatever I tried, and when I run the main page, I get no error but I can't see my included page in a main page. Why?

My main page is:

                    <!-- This is where I include my page -->
                    <f:subview id="nav">
                    <jsp:include page="frontsitemenu.jsp" />
                    </f:subview>


          </webuijsf:form>
        </webuijsf:body>
    </webuijsf:html>
</webuijsf:page>

My included page is:

rrrrrrrrrrrrrrrrrr

Can someone please help me? Thanks

flag
I would check the placement of the frontsitemenu.jsp file. Maybe it isn't in the directory you think it is and you'll have to include the path from the web application root to that file. – amischiefr Jun 26 at 18:50

1 Answer

vote up 0 vote down

hello!

I suggest you use:

<%@include file="_frontsitemenu.jsp" %>

Thats whats working for me

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.