
How to pass string one jsp to another jsp without using input tag????

1)jsp1.jsp:
<% String st="Hello"; %> <a href="jsp2.jsp?st=<%=st%>">Pass String Value</a>
2)jsp2.jsp:
<%
String str=request.getParameter("st");
out.println("String is: "+str);
%>
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.