Hi,
I’m trying to include a JSP page of the form:
“xml version = '1 .0 '?>” +
“” +
“” +
" PEOPLE" +
“” +
“[CDATA [” +
“<jsp:include flush=‘true’ page=‘http://localhost:8484/MenusAction/inicio.jsp’> </ jsp: include>” +
“” +
“” +
“<% @ Include file = ‘http://localhost:8484/MenusAction/index.jsp’>” +
“]]>” +
“</ content>” +
“</ tab>” +
“</ row>” +
“</ tabbar>”;
This xml is formed from a java class and try to include inicio.jsp page in the content of this tab, but it plays well. What is the problem?
Thank you. A greeting.
jsp is server-side. So, you can not include it by loading content from xml.
The following will work:
“xml version = '1 .0 '?>” +
“” +
“” +
" PEOPLE" +
“</ tab>” +
“</ row>” +
“</ tabbar>”;
Where some.jsp:
<jsp:include flush=‘true’ page=‘http://localhost:8484/MenusAction/inicio.jsp’> </ jsp: include>" +
“” +
“” +
"<% @ Include file = ‘http://localhost:8484/MenusAction/index.jsp’>
Or you can use a simple html initialization dhtmlx.com/docs/products/dht … _html.html