我想在我的两个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.