JSP
<input type="text" name="roleuser" value="<%= request.getParameter("role") %>">
<%
String roleuser1= request.getParameter("roleuser");
session.setAttribute("Role",roleuser1);
%>
how to pass this role to the next page called second.page
value="<%= session.getAttribute("Role");
i used this coding, but i cannot get the value
please solve this problem
help with sample code

