how can we retrieve the values in jsp by using custom tags
Answer Posted / shiraz khan
Tag handler class is not a servlet or jsp, so it doesn't
have access to many implicit objects which are available in
jsp. It, however, has a reference to PageContext using which
we can call :
pageContext.getAttribute(name) // looks in page scope only
pageContext.getAttribute(name,scope) // looks in specified
scope
alternatively we can also also get references to other
scopes using :
pageContext.getRequest()
pageContext.getSession()
pageContext.getServletContext()
pageContext.getServletConfig()
And yes, this pageContext implicit object is given to the
tag class by container, during initialisation of this tag
class when setPageContext(PageContext) is called by container
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Where is jsp used?
What is the use of implicit object named "application" in Application?
What is an implicit object?
What is jsp index?
What is jsp in javascript?
What do you mean by context initialization parameters?
What is jsp action tags?
What are scripting elements?
What is the resourcebundle class in jsp?
What is jsp-config in deployment descriptor?
What is pagecontext?
Which implicit object is not available in normal jsp pages?
List out the various scope values of jsp action.
Hi, I've applied for HPCL(Information System Officer)& UIIC (A).Plz send me previous/sample papers and any suggestions regarding this exam.Please advice me good study material or related links. Thanks in advance shyam shyamprasad71@gmail.com
What are the different scope values for the jsp objects?