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...