
Hi. I have given a hyperlink in one jsp page. Can i able to pass that hyperlink label as a value to the next page its navigating when the user clicks it. Plz respond me quickly. Thanks in advance.

Here is a jsp code passes a value to hyperlink and send it to next jsp page.
1)one.jsp:
<% String name="Roseindia"; %> <a href="two.jsp?name=<%=name%>">Next Page</a>
2)two.jsp:
<%
String nn=request.getParameter("name");
out.println("Hello "+nn);
%>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.