I found this question on Javabeat..could not understand what
"pageContext.include" means.need some explanation.Thanks(answers are a,b,d)
Assuming that a
JSP by name "one.jsp" wants to have a request time inclusion
to happen for the page "two.jsp". Choose the following right operations (assuming
that the following code is residing in "one.jsp"?
a. pageContext.include("two.jsp")
b. <jsp:include page = "two.jsp" />
c. <@% include file "two.jsp" %>
d. request.getRequestDispatcher("two.jsp").include(request, response)
e. All the above.