On 5/17/07, Dave Newton <[EMAIL PROTECTED]> wrote:
--- Will Smith <[EMAIL PROTECTED]> wrote: > Everything works as expected, but I noticed that when > the Blog_view view is rendered, my navigation links > now have that request parameter appended to them when > the don't need it. http://struts.apache.org/2.x/docs/url.html See the includeParams attribute. http://struts.apache.org/2.x/docs/strutsproperties.html See the struts.url.includeParams property. You should probably set it in your struts.xml file as per: http://struts.apache.org/2.x/docs/constant-configuration.html d.
Thanks, that worked out perfect. Is this something that is commonly needed? When using this, are there any issues I should look out for in the future? Basically, I'm just trying to make sure I'm using the framework as it was intended. Thanks for your help Dave. Will