xinyb
2024-09-10 8c1986f019fc92360534e4f8b7d1688ac0bff9fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() +"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
  <head>
    <title>111</title>
  </head>
  <body>
  SessionID:<%=session.getId()%>
  <BR>
  SessionIP:<%=request.getServerName()%>
  <BR>
  SessionPort:<%=request.getServerPort()%>
  </body>
</html>