Is something like <jsp:include page="C:/Documents and Settings/admin/My Documentslibrary/example.jsp"></jsp:include> possible? Thanks.
Is something like <jsp:include page=C:/Documents and Settings/admin/My Documentslibrary/example.jsp></jsp:include> possible? Thanks.
Share
No. jsp:include can have relative path or expressions. It cannot contain a protocol name, port number, or domain name. The URL can be absolute or relative to the current JSP page. If it is absolute (beginning with a /), the pathname is resolved by your web or application server.