2 つの JSP ページ間で文字列 (ユーザー名) を渡したいのですが、
Login.jsp と Details.jsp。
それができる方法を教えてください。
I tries this in Login.Jsp
<html>
......
<%
session.setAttribute("key","value");
%>
.....
</html>
In Details.jsp
<html>
......
<%
session.getAttribute("key");
%>
.....
</html>
It showed "NULL" as output.