Re: HELP! get request parameter from a custom tag

2003-02-14 Thread Craig R. McClanahan
On Fri, 14 Feb 2003, Kevin Williams wrote: > Date: Fri, 14 Feb 2003 15:22:47 -0800 (PST) > From: Kevin Williams <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: HELP! get request parameter from a custom tag > > Hi, > > I apologize

RE: HELP! get request parameter from a custom tag

2003-02-14 Thread Kevin Williams
Doh! It's amazing how hard it is to retrieve when you call getAttribute instead of getParameter! THANK YOU! > This code snippet should do the job. > > String value = pageContext.getRequest().getParameter("paramname"); > > Kind regards > > -Oorspronkelijk bericht- > Van: Kevin Williams [m

RE: HELP! get request parameter from a custom tag

2003-02-14 Thread Damm, Gary
There's a tag for this in the struts bean taglib. Bean:parameter Check it out: http://jakarta.apache.org/struts/userGuide/struts-bean.html#parameter Gary -Original Message- From: Kevin Williams [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 3:23 PM To: [EMAIL PROTECTED] Sub

RE: HELP! get request parameter from a custom tag

2003-02-14 Thread Johan Kumps
This code snippet should do the job. String value = pageContext.getRequest().getParameter("paramname"); Kind regards -Oorspronkelijk bericht- Van: Kevin Williams [mailto:[EMAIL PROTECTED]] Verzonden: zaterdag 15 februari 2003 0:23 Aan: [EMAIL PROTECTED] Onderwerp: HELP! get request param