I am trying to access request parameters on a web page and trying to set the value of hidden fields for the passed parameter. How can I achieve this using struts2 tags?
Sort of...
<s:hidden name="myfield" value="#parameters['myparam']"/>
I am trying to use a parameter object, but it does not work!
Thanks in advance.
source
share