Paranoid_Fabio wrote:
Thank you. The outline is:

Navigation.jsp (the links bar that is included in the other pages):

<body>
<s:i18n .....>

.......page content
</s:i18n>
</body>

Home.jps (which includes Navigation.jsp):

<body>
<s:i18n ......>
<[EMAIL PROTECTED] file="Navigation.jsp"%>

.....page content....

</s:i18n>
</body>

Two immediately obvious issues with that:

1) you'll end up with nested <body> elements in the output, which is invalid HTML.

2) you have nested s:i18n tags (one in Home.jsp surrounding the include, one in the included Navigation.jsp), which is exactly what Dave asked about. What happens if you move the include outside the s:i18n tag in Home.jsp?

L.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to