码迷,mamicode.com
首页 > Web开发 > 详细

jsp session

时间:2014-11-03 16:12:04      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   os   java   for   sp   on   

first.jsp
<%@ page contentType="text/html;charset=UTF-8"%>
<html>
<body>
<form method=POST action="next.jsp">
请输入用户名:
<input type=text name="name">
<input type=submit value="下一步">
</form>
</body>
</html>
next.jsp
<%@ page contentType="text/html;charset=UTF-8"%>
<html>
<body>
<%@ page language="java"%>
<%! String name="";%>
<%
name=request.getParameter("name");
session.putValue("name",name);

response.setHeader("refresh", "1;url=last.jsp");
%>

</body>
</html>

last.jsp
<%@ page contentType="text/html;charset=UTF-8"%>
<html>
<body>
<%@ page language="java"%>
<%

request.setCharacterEncoding("UTF-8");
String username=(String) session.getValue("name");
out.print("您好:"+username+"<a href=first.jsp>注销</a>");

%>

</body>
</html>

jsp session

标签:style   io   color   ar   os   java   for   sp   on   

原文地址:http://www.cnblogs.com/guaihaizi/p/4071234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!