<%@ 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>

相关文章:

  • 2021-12-25
  • 2022-01-17
  • 2022-12-23
  • 2021-11-06
  • 2021-05-28
  • 2021-08-17
猜你喜欢
  • 2022-02-16
  • 2021-09-14
  • 2021-10-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-19
相关资源
相似解决方案