I set my parameter in my jsp like this:
<s:url id="open" action="viewEvent"> <s:param name="eventName" value="eventName" /> </s:url> <sj:a href="%{open}" targets="eventSearchResultsDiv">Open</sj:a>
How do I access this option on my jsp page. This does not seem to work -
<s:property value="eventName" />
Although it works - <%= request.getParameter("eventName") %>
thanks
source share