Hi Guys, I have build a dynamic jsp page which need some parmeter to display the information for instance: http://localhost/category.jsp?cId=12
Inside this pageI've got a form which post some data to my Action. The Action process the data and should go to my result page which need also some parmeter. So far I've defined the following in strust.xml <action name="addCategory" class="com.ebespoke.web.admin.action.Categories"> <result>/admin/category.jsp</result> </action> How can I define a some paremeter to pass to a Result page defined in Struts.xml ? Thanks for your help