I am creating one tool with JSP. I have multiple JSP pages which takes input from user. Now i want to use that inputs on many other jsp pages.
Suppose i have login page as my first page when user enters username i am able to get it on my next jsp page which i used in Form method as post action. But i am not able to display the same username on other Jsp Pages.
I am using jsp:getProperty for getting values:
<jsp:getProperty property="username" name="user2"/><br>
<jsp:getProperty property="password" name="user2"/><br>
Please suggest is there any way to get the value on multiple pages with jsp:useBean