how can we retrieve the values in jsp by using custom tags

Answers were Sorted based on User's Feedback



how can we retrieve the values in jsp by using custom tags..

Answer / vij

${person.name}

Is This Answer Correct ?    1 Yes 0 No

how can we retrieve the values in jsp by using custom tags..

Answer / sandeep

using get methods

Is This Answer Correct ?    1 Yes 0 No

how can we retrieve the values in jsp by using custom tags..

Answer / nowsheen

I think using EL expressions can be used .

El expressions internally uses getAttribute method to
retrive the values in jsp by using custom tags

Is This Answer Correct ?    0 Yes 0 No

how can we retrieve the values in jsp by using custom tags..

Answer / 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

More JSP Interview Questions

What is jsp exception?

0 Answers  


what will happen if we disable cookies in the web page?

7 Answers  


What is context in web application?

0 Answers  


What is out in jsp?

0 Answers  


Can I stop jsp execution while in the midst of processing a request?

0 Answers  






Why are implicit objects not available in a regular jsp page?

0 Answers  


How does JSP handle run-time exceptions?

2 Answers   IBM,


What is jstl jar?

0 Answers  


Why do we need custom tags in jsp?

0 Answers  


What is content type in jsp?

0 Answers  


What is jsp and how it works?

0 Answers  


Why do we need servlets and jsp?

0 Answers  


Categories