RE: How to add an attribute to the request in the validate() method?

2002-06-16 Thread Andrew Hill
11:21 To: Struts Users Mailing List Subject: Re: How to add an attribute to the request in the validate() method? > I´m trying to add an parameter in the validate method in a form bean to the > request like > request.setAttribute("id", commentID); As the name indicates, s

Re: How to add an attribute to the request in the validate() method?

2002-06-15 Thread Vincent Aumont
> I´m trying to add an parameter in the validate method in a form bean to the > request like > request.setAttribute("id", commentID); As the name indicates, setAttribute sets an attribute, not a parameter. A possible solution would be to define a hidden field in your form. -vincent. -- To uns