RE: How to remove global ActionErrors?

2001-08-31 Thread Luna, Katherine
Title: RE: How to remove global ActionErrors? Thank you, that works wonderfully :) kat -Original Message- From: Ed Milic [mailto:[EMAIL PROTECTED]] Sent: Friday, August 31, 2001 11:52 AM To: [EMAIL PROTECTED] Subject: Re: How to remove global ActionErrors? Hi Katherine, The

Re: How to remove global ActionErrors?

2001-08-31 Thread Luis Olivares
Title: How to remove global ActionErrors? PageContext can be accessed directly from your Custom Tags. In fact from there is from where you get your other 'scopes'.   This way you reference the different scopes from within a Custom Tag:        HttpSession session = pageContext.getSession();  

Re: How to remove global ActionErrors?

2001-08-31 Thread Ed Milic
Hi Katherine, The pageContext can be accessed in your tag. It is part of the Tag interface. All you need to do to access the pageContext is: request = pageContext.getRequest(); Then you can set the Action.ERROR_KEY to null. Cheers, Ed >From: "Luna, Katherine" <[EMAIL PROTECTED]> >Reply-