How can I use a variable defined in a tag library inside a declaration?
Created May 7, 2012
Christopher Pickslay Since you created your bean in the page context, if you want to use it in a declaration, you need to explicitly retrieve it from the pageContext object:
dbCon = (com.vignette.cds.client.beans.DBConnection) pageContext.getAttribute("dbCon"); con = dbCon.getConnection ("content");