Define Implicit Variables in JSP »
By Ramakrishna on Sep 30, 2008 in jsp implicit variables | 0 Comments
Q) What are the implicit variables?
A) Implicit variables are objects that are created by the web container and contain information related to a particular request, page, or application. They are:
–> request
–> response
–> pageContext
–> session
–> application
–> out
–> config
–> page
–> exception
Request:-
It is also an implicit object of class HttpServletRequest [...]
