Re: Holding on to request data

2002-03-19 Thread Ted Husted
There's not an easy way, since we're confined to what HTTP/HTML can do. The only way to pass information from a web page is through a GET or POST request, which means you have to write it out in the page, either in an URI or as an element in a form. The Java Servlet framework provides the sessi

Holding on to request data

2002-03-15 Thread Bryan P. Glennon
Hi - I need to keep a request around during a page display. What I am doing goes like this: - User clicks on a button - Request gets passed to various struts Action classes where various things happen - Request then gets passed to a jsp page. This jsp page is a frameset c