<% request.setAttribute("decorator", "none"); response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy server %>

Accessing properties on the stack

Object that are not on the top of the Value Stack are accessed using the "#name" notation. Some objects are always pushed into the stack by Struts, like:

To see the value of the first parameter type:

#parameters['debug'][0]

on the OGNL console and hit enter. Do it for me


[More details]