I send some values from one jsp page to another using link like -
<a href="get.jsp?value=Mobile">Mobile Phones</a>
In the nex page i get the value using request.getParameter like-
if (request.getParameter("value") == "Mobile") {
electronicType = "Mobile Phone";
}
Then I want to make another link using the value like-
<a href="mob.jsp">electronicType</a>
Instead of electronicType I want the value of electronicType. But I can not get the value of electronicType. please somebody help me.