What is PageContext in JSP?

Answered

What is PageContext in JSP?

Ninja Asked on 18th September 2018 in Jsp.
Add Comment
1 Answer(s)
Best answer

A PageContext is an instance of a javax.servlet.jsp.PageContext object that provides a context to store references of objects used by the JSP page. PageContext is used to get and set attributes with different scopes like page, request, session and application and to forward request to other resources.

Ninja Answered on 18th September 2018.
Add Comment