You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Giovanni Formenti <fo...@ariadne.it> on 2003/03/26 10:00:15 UTC

Include a file with custom tag

Hallo,
I'd like to know if it's possible to include into a JSP page another JSP
page with some custom tags. I try with <%@ include file="tags.jsp" %> or
<jsp:include...> or <%="content_of_tag.jsp" %> and it works but the custom
tags in the "tags.jsp" file aren't parsed as custom tags, they stays the
same as in "tags.jsp".
For example:
--------------
main.jsp:
[... I include taglibs declaration, sure...]
<html:form ...>
<%@ include file="tags.jsp" %>
</html:form ...>
[...]
--------------
tags.jsp:
[... I include taglibs declaration, sure...]
[...]
--------------
the result:
<form ...> //right parsed
<html:text ...>  //not parsed!!
</form ...> //right parsed
---------------
instead of:
<form ...>
<input type="text" ...>
</form ...>

There is a way to do this (maybe in a servlet that "compile" tags.jsp and
then "include" it in the main JSP)?
Thanx for any help!!

Giovanni


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org