<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ page import="java.util.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>列出jsp中的所有session</title>
</head>
<body>
<%
Enumeration e=session.getAttributeNames();
String temp;
for (;e.hasMoreElements();){
temp=(String)e.nextElement();
out.print(temp+"="+(String)session.getAttribute(temp)+"<br>");
}
%>
</body>
</html>
posted on 2006-06-07 13:54
herry 阅读(221)
评论(0) 编辑 收藏 所属分类:
JAVA