Struts Global Action Forward passing Parameter
I am new to struts and I need to pass paramter with the global action forward.
SImply I need to pass parameters like http://xxx:9080/yy/a.jsp?disp=1
I have defined a global forward for a.jsp as follows:
<html:link forward="ABC">Click Me</html:link>
In struts-config.xml, I have defined ABC
<forward name="ABC" path="/a.jsp">
Now as I mentioned I need to pass a paratmeter disp with some value....
How do we do this in Struts. Please help.

