I have a page A.jsp
inside that there is a table which has
1 column: {Partner}
, values: {trust,micros,NH}
all these values are (trust,micros,NH)hyper text links
When i click on any value ,my action class called and
it redirect to different jsp page B.jsp
B.jsp
page contain data related to that value ex. (trust)
But for that i need to fetch data according to perticular value like select total_report from reservation where partner='trust'
so how will i pass that value on click from A.jsp
to action class java file
so that i can run that query.
Using Struts framework
Please Help.