Hi ,
I want to get name of link from jsp page to my struts action class when I click the link.
following is in my jsp page
Code:
<a href="getJobDetails.do"><bean:write name="jobActionForm" property="jobName" /></a>
when I click on perticular job name the jobname should be pass to my struts action
I tried to get this name like follow
Code:
String jobName=request.getParameter("jobName");
but it taking null value..
can anybody help me plz?
Thanks in advance.
Monali Swarge