Hello,
Is is possible to instantiate a variable or object in a JSP file, then
get that object from within a tag?
Thanks!
For example:
JSP page --------
<html>
String x = "test";
<myTag:set name="x">
</html>
-----------------
Set TAG Implementation -----
doStartTag()
{
?????
pageContext.getAttribute("x")
?????
}
------------------------
- RE: pageContext.getAttribute() Procek, Brett
- RE: pageContext.getAttribute() Dave Newton
- Re: pageContext.getAttribute() Bill Pfeiffer
