What is the difference between pageContext and page
implicit objects in jsp?
Answer Posted / amit
Page and Pagecontext are implicit objects in jsp. These are created at JSP translated time. The page object represents the generated servlet instance itself and is used as a scope with in one jsp. Pagecontext is used to initilize all implicit objects for example :- page attributes, access to the request, response and session objects, as well as the JspWriter referenced by out. Refer http://modernpathshala.com/Learn/servlet-and-jsp/Interview to read servlet and jsp interview questions
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can classes declared using the abstract keyword cab be instantiated?
How do you convert boolean to boolean?
Can you sort a string in java?
Can we override a variable in java?
What is the difference between an argument and a parameter?
What is the final class modifier?
What is a function argument in java?
What is a super method?
Can an interface extend a class?
What is ternary operator?
Does string isempty check for null?
What are the limitations of procedural programming approach?
What are streams in java 8?
When is the finalize() called?
What is == and === in javascript?