Simple question on include

1999-10-01 Thread Vlad
Hello, everyone! I am trying to include one jsp file in another, and I have to pass some parameters from one to another. The following does not seem to work. Is this the right way, or is there a better way. Thanks, Vlad. ===

Re: Simple question on include

1999-10-02 Thread Carsten Heyl
Hi Vlad! You have to put you arguments as attributed with request scope into the pageContext. See pageContext.setAttribute(). The included page can then get that objects via pageContext.getAttribute(). >Hello, everyone! > >I am trying to include one jsp file in another, and I have to pass some