posted 23 years ago
Hi James,
Objective 12.7 refers to the following section of the JSP 1.2 spec:
Core API - Implicit Objects - PageContext.
More specifically:
A given JSP implicit variable:
PageContext.getOut()
PageContext.getPage()
PageContext.getException()
PageContext.getRequest()
PageContext.getResponse()
PageContext.getServletConfig()
PageContext.getServletContext()
PageContext.getSession()
The JSP page's attributes:
PageContext.getAttribute()
PageContext.setAttribute()
PageContext.findAttribute()
PageContext.removeAttribute()
PageContext.getAttributeScope()
PageContext.getAttributeNamesInScope()
I hope this helps,
Joe