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
How will you calculate the depth of a binary tree if the tree contains 15 nodes?
What is a methodologist?
Why runnable interface is used in java?
Is Constructor possible in abstract class in java ?
What is int lol?
What is the purpose of the enableevents() method?
what is a working thread? : Java thread
What is the difference between yielding and sleeping in java programming?
What are the parts of methodology?
What is object data type?
Write an algorithm for quick sort?
Can a class have a static inner class?
Assume a thread has lock on it, calling sleep() method on that thread will release the lock?
What is the difference between quicksort & mergesort? When should they be used? What is their running time?
What is array pointers ?