Re: Includes that Forward

2006-07-07 Thread Tim Fennell
I guess I look at it the other way around. I want to be able to design things that don't have to know whether they are being included or not. The real case that I'm dealing with here is that I have the equivelant of a Struts action. In some cases the Action will be accessed directly by a use

Re: Includes that Forward

2006-07-07 Thread David Smith
Personally, I think it's bad design to have an include do a forward and then expect the forward content to replace the include. A forward, even from an include, should replace the entire content of the would be response. The behavior you are looking for could be done easily (and more cleanly)

Includes that Forward

2006-07-07 Thread Tim Fennell
Hi, I'm wondering what the expected behaviour is when a JSP that is included from another JSP then forwards to a third JSP? As an example: - start.jsp - some content on start.jsp - _include_ included.jsp - some content on included.jsp - _forward_ to forwa