jsp

位置:IT落伍者 >> jsp >> 浏览文章

讲解jsp中的所有session


发布日期:2018年11月19日
 
讲解jsp中的所有session
  1. <%@ page contentType="text/html; charset=gb" language="java" import="javasql*" errorPage="" %>
  2. <%@ page import="javautil*"%>
  3. <html>
  4. <head>
  5. <meta httpequiv="ContentType" content="text/html; charset=gb">
  6. <title>无标题文档</title>
  7. </head>
  8. <body>
  9. <%
  10. Enumeration e=sessiongetAttributeNames();
  11. String temp;
  12. for (;ehasMoreElements();){
  13. temp=(String)enextElement();
  14. outprint(temp+"="+(String)sessiongetAttribute(temp)+"<br>");
  15. }
  16. %>
  17. </body>
  18. </html>

上一篇:如何使用JSP来发送邮件

下一篇:如何利用JSP建立Web站点