Form-bean is stored in request/session.
And in a custom tag, you can access the property pageContext.

Why not using a code like :

MyFormBean form = (MyFormBean)pageContext.getAttribute("myFormBeanName",
                                 PageContext.SESSION_SCOPE);

or

MyFormBean form = (MyFormBean)pageContext.getAttribute("myFormBeanName",
                                 PageContext.REQUEST_SCOPE);

Don't know if it answer your question :-)
--
C. Bouessay




Bryan P. Glennon wrote:
> (I tried to post this to the list yesterday, but I don't think it made
> it - it is not in the list archive. Sorry if this shows up twice.)
> 
> Is there any way to access the form bean from within the
> doStartTag/doAfterBody functions of a custom tag?
> 
> Thanks,
> Bryan
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
> 
> 




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to