RE: URL param included on all URL's

2008-10-13 Thread col_chappy
ober 13, 2008 10:07 AM > To: user@struts.apache.org > Subject: URL param included on all URL's > > > I'm developing a webapp with Struts 2.0.11.2. I've got a page that > displays a > list of customers and allows you to click on them to bring up a page > with

Re: URL param included on all URL's

2008-10-13 Thread Dave Newton
--- On Mon, 10/13/08, col_chappy wrote: > This works well, except now every link, even those on other pages, have > that ?id parameter in the URL. What am I messing up? Any help is > appreciated In addition to David's suggestion, you can also set a default value for the entire application: >Fro

RE: URL param included on all URL's

2008-10-13 Thread Kawczynski, David
I think you want to use an includeParams="none" attribute in the s:url tag -Original Message- From: col_chappy [mailto:[EMAIL PROTECTED] Sent: Monday, October 13, 2008 10:07 AM To: user@struts.apache.org Subject: URL param included on all URL's I'm developing

URL param included on all URL's

2008-10-13 Thread col_chappy
I'm developing a webapp with Struts 2.0.11.2. I've got a page that displays a list of customers and allows you to click on them to bring up a page with more information. Each customer has a unique ID which is passed as a parameter in the URL. The JSP code looks like this: This wo