Wednesday, January 8, 2014

To send a value with hyperlink tag in JSP

To send a value with hyperlink tag follow the given code...

<a href="Product.jsp?value=<%=bookname%>"> <%= bookname %></a>

here to send the value bookname to product page I have written the given code. bookname is a String variable.


or simply

<a href="Product.jsp?value=1">Click here to go to Product page</a>

now on the next page(or Product.jsp page) simply write

String val=request.getParameter("value");

No comments:

Post a Comment