Re: jsp:include params

2005-07-30 Thread Tim Funk
In this case - you probably want to use a tag file. -Tim Patrick Thomas wrote: Hi All, When jsp:include-ing a page, I see that params from the calling page are also passed on to the called page. Example: caller.jsp: (hypothetically called with param1 = val1) callee.jsp: Sees reques

jsp:include params

2005-07-29 Thread Patrick Thomas
Hi All, When jsp:include-ing a page, I see that params from the calling page are also passed on to the called page. Example: caller.jsp: (hypothetically called with param1 = val1) callee.jsp: Sees request variables param2 (of course) *and* param1. This is specified by the spec, so every