Thanks. I have another question, which might be a little off topic. if I have a method like this in my Action class
public void setPrinter(String print) { this.printer = print; } how can I call this setter with some value from my jsp page using struts2? I know this can be set if I submit a form with hidden value and stuff but I dont want to submit a form. I just want to set the value from the jsp page. .. On Tue, Aug 4, 2009 at 2:00 PM, Kawczynski, David < david_kawczyn...@merck.com> wrote: > Implement the requestAware interface to have access to a Map containing > request parameters as name-value pairs. > In terms of an html tag, use OGNL to get to the request parameters. > Especially the #request object. EG %{#request.someParam} > > > -----Original Message----- > > From: Bhaarat Sharma [mailto:bhaara...@gmail.com] > > Sent: Tuesday, August 04, 2009 1:56 PM > > To: Struts Users Mailing List > > Subject: equivalent of request.getParameter(); > > > > In servlets we can do request.getParameter("someParm"); to > > gain access to > > parameters passed to the jsp. > > what is the equivalent of this in struts2? > > > > is there an html tag for this? > > > Notice: This e-mail message, together with any attachments, contains > information of Merck & Co., Inc. (One Merck Drive, Whitehouse Station, > New Jersey, USA 08889), and/or its affiliates (which may be known > outside the United States as Merck Frosst, Merck Sharp & Dohme or > MSD and in Japan, as Banyu - direct contact information for affiliates is > available at http://www.merck.com/contact/contacts.html) that may be > confidential, proprietary copyrighted and/or legally privileged. It is > intended solely for the use of the individual or entity named on this > message. If you are not the intended recipient, and have received this > message in error, please notify us immediately by reply e-mail and > then delete it from your system. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > >