Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i need to get value of<html:link> to action class. For example

i have link like

Java
<li class='has-sub'><a href='#'><span>Buy</span></a>
   <ul> <li class='has-sub'>
     <li><html:link page="/saleget.do"><span>Home for Sale</span></html:link></li>
     <li class='last'><html:link page="/Newhomes.do"><span>New Homes</span></html:link></li>
    </ul>
 </li>


when i click on link Home for Sale i need to get this value to action class in order to store it in DB.

i tried following but it returns null value.

HTML
<html:link page="/saleget.do" paramid="xxx" paramNmae="some value">Home for sale</html:link><pre lang="xml"></pre>


in formbean class
................


&lt;pre lang=&quot;java&quot;&gt;
private String xxx;
set()..
get()..
&lt;/pre&gt;
 if i get this value in action class it returns null value.


how can i get this &lt;html:link&gt; value




Thanks in Advance.</pre>
Posted
Comments
User-10031173 28-May-13 2:22am    
i got the solution. we can do like this

<html:link page="/saleget.do?sale=Home for sale">Home For sale</html:link>


in formbean class we can define like this..
private String sale;
set()..;
get()..

1 solution

we can html link value in action class by using following code.

HTML
<html:link page="saleget.do?sale="Home for sale">Home for sale</html:link>



In form bean class:


Java
private String sale;
set()..
get()..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900