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")
?????
}
------------------------

Reply via email to