列出JSP中的所有SESSION
类别: JSP教程
<%@ 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>无标题文档</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>
<%@ page import="java.util.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</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>
- 上一篇: JSP如何连接DB2数据库
- 下一篇: 如何进行J2SDK和TOMCAT的安装及配置
-= 资 源 教 程 =-
文 章 搜 索