> I have created several custom tag libs, I notice there is a > release() method in the TagSupport class. Will the release() > method be automically called the tag lib is finished? If > not, where should I call it? Thanks! >
It will be called by the JSP page implementation object automatically, so you don't have to call this yourself. Multiple invocations on doStartTag and doEndTag may have occurred before this method is called (for example when multiple tags of the same type occur on a page). Regards, Ronald. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
