You must pass the value to the onclick event url and get it using
request.getParameter()
on the JSP page. Below is a sample code
<a href="DocumentViewer.jsp?proces=something">Hello</a>
and get it in jsp like that.
String pro=request.getParameter("proces");
source share