123456789101112131415161718192021222324252627 |
- <%--
- Created by IntelliJ IDEA.
- User: 武恒
- Date: 2023/2/9
- Time: 14:25
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Title</title>
- </head>
- <body>
- <h1> Admin.JSP </h1>
- <%
- session.invalidate();
- System.out.println( "run 2" );
- %>
- </body>
- </html>
|