what is the difference between page and pageContext
implicit variables
Answer Posted / guest
The implicit variable page is of class java.lang.Object and
it refers to instance of generated servlet. It is declared as
Object page=this
Consider
<%= page.getServletInfo() %> will give Error
getServletInfo() is not a method of java.lang.Object
<%= ((Servlet)page).getServletInfo() %> is valid
pageContext variable is of type
javax.servlet.jsp.PageContext. The PageContext class is the
abstract class and JSP engine vendor provides its concrete
subclass.
·Store reference to implicit objects,
·Provide method to get and set attributes in different scopes.
·Provide convenience methods for transferring request to
other resources in web application.
PageContext.forward(“other.jsp”);
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of @intrangefieldvalidator annotation?
What is switchaction?
What is the default suffix for Struts2 action URI and how can we change it?
What is the purpose of plug-in tag in struct-config.xml?
Why it called struts?
What is struts in j2ee?
What is life cycle of an interceptor?
What is controller in struts2?
How many struts config file can be created in struts?
What are the different kinds of actions in struts?
Why actionservlet is singleton in struts?
What is the purpose of @conversionerrorfieldvalidator annotation?
What is container struts2?
Describe the mvc on struts?
How do you find the struts version being used in a project?