eg.jsp 647 B

123456789101112131415161718192021222324252627282930313233343536
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/5/21
  5. Time: 19:24
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>例子1</title>
  12. </head>
  13. <body>
  14. <h1>显示浏览人数</h1>
  15. <%
  16. Integer count =(Integer) session.getAttribute("count");
  17. if (count == null){
  18. count=1;
  19. session.setAttribute("count",count);
  20. }else {
  21. count++;
  22. session.setAttribute("count",count);
  23. }
  24. %>
  25. 你是第<%=
  26. count
  27. %>位浏览者
  28. </body>
  29. </html>