Posted By:
Slavko_Dzalto
Posted On:
Tuesday, December 18, 2001 04:29 AM
Hi,
I want to include a MVC View in a JSP Page, for example:
jsp:include page="MyHost:8080/MyController/MyView"
But this jsp:include don“t work.
I also try to do it with the Java-RequestDispatcher, but it also not works:
RequestDispatcher rq = myRequest.getRequestDispatcher("/MyController/MyView);
rq.include(myReq,myResponse);
Has anyone a idea?
Slavko :)