You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Zakaria khabot <z....@ced.mfie.gov.ma> on 2004/04/15 14:06:40 UTC

forward

Hi all,
I have a tiles jsp named "main" containing :
<tiles:insert page="AcceuilTemplate.jsp">

<tiles:put name="head" value="templates/Head.jsp" />

<tiles:put name="entete" value="templates/entete.jsp" />

<tiles:put name="foot" value="templates/Foot.jsp" />

<tiles:put name="navi" value="templates/Navi.jsp" />

<tiles:put name="content" value="SaisiPB.jsp" />

</tiles:insert>

the SaisiPB.jsp is validated in the FormAction.

When errors are detected, I receive a forward to SaisiPB.jsp (witch is the unique page displayed in the Window), not to Main.jsp.

How to solve this problem.

Thanks...