Posted By:
Stephen_McConnell
Posted On:
Monday, July 15, 2002 05:57 AM
The only way I can think to do this is to remove the hidden variables.
You then implement a "mediator" design pattern. This means you create a mediator class holding those variables yo need which you instantiate and put either as an attribute in the session (if you need to keep these values throught multiple pages) or put it as an attribute in the request. These
objects are kept with the session, are not visible to the user... etc.
Hope this helps.
Stephen McConnell