i want to create a jsp page which will have a
hyperlink to another jsp page.
on clicking the hyperlink it should go to the other page and pass a parameter and its value as well.
how can i do this using struts htlm tag...<html:link>..?
-
struts htlm tag...<html:link>..? (1 messages)
- Posted by: Kriti S
- Posted on: February 04 2005 02:36 EST
-
link[ Go to top ]
- Posted by: Ash H
- Posted on: February 04 2005 09:57 EST
- in response to Kriti S
Ideally you should be forwarding the response through action servlets, taking advantage of the controller.
In this case it would be..
<html:link page="/customer.do?" paramName="customerForm" paramProperty="custNumber" paramId="customer">
CustomerDetails
</html:link>
Hope this helps.