Re: pageContext.getAttribute()

2001-05-15 Thread Bill Pfeiffer
" + _name); } } HTH, Bill Pfeiffer - Original Message - From: "Procek, Brett" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 2:43 PM Subject: pageContext.getAttribute() Hello, Is is possible to instantiate a variable or object in

RE: pageContext.getAttribute()

2001-05-15 Thread Dave Newton
> From: Procek, Brett [mailto:[EMAIL PROTECTED]] > Is is possible to instantiate a variable or object in a JSP file, then > get that object from within a tag? Sure is, and it can be pretty handy ;) Dave

pageContext.getAttribute()

2001-05-15 Thread Procek, Brett
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 String x = "test"; - Set TAG Implementation - doStartTag() { ? pageContext.getAttribute("x") ? }