|
Well I'm not sure if this fits in here or in the web developement part, but since it's a JSP question I thought I'd try it here.
I've created a bunch of JSP pages that rely heavily on retrieving values by passing them through the url with the ?context=value and then using request.getParameter(context) to use it in the second page. This usually works with JSP alone, but now I'm using 'ssi include' and passing the context from other shtml pages, and the request.getParameter() is no longer working with these pages.
Any thoughts?
On the other hand, this might not be possible at all, since the ssi thing only takes the output of the jsp page. In that case, is there a way to work around passing the info through the url. Is there another way to get a value from a previous page?
This post has been edited by pyrocubed: 12 Sep, 2008 - 01:50 AM
|