Hi Guys,
I found a question from the
JSP 2.0 specification: (Page I-110)
if there're A.jsp, C.jsp, dir/B.jsp and dir/C.jsp:
Case 1: A.jsp says <%@ include file=�dir/B.jsp�%> and dir/B.jsp says <jsp:include page=�C.jsp�/>. In this case the relative specification C.jsp resolves to C.jsp.
Case 2: A.jsp says <%@ include file=�dir/B.jsp�%> and dir/B.jsp says <%@ include file=�C.jsp�%>. In this case the relative specification C.jsp resolves to dir/C.jsp.
Greately appriciate if you can tell me why case 1: is not dir/B.jsp.
Thanks a lot!
Hai