I want to display a list of hyperlinks. When the user selects an item, I want an 
ActionForm to be filled with the two query fields from the hyperlink. 

<p><a href="MyAction.do?a=11&b=98>Record A</a></p>
<p><a href="MyAction.do?a=31&b=34>Record B</a></p>
<p><a href="MyAction.do?a=53&b=23>Record C</a></p>

For example, selecting the first item should result in Struts creating an ActionForm 
and setting properties "a" and "b" to 11 and 98. 

When I get to the Action associated with "MyAction.do" I will use the passed 
ActionForm to get properties "a" and "b" in order to fetch the record and forward the 
user to a view showing record details.

What Struts tags do I use for these hyperlinks?
--
Sent via jApache.org

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to