0
点赞
收藏
分享

微信扫一扫

jsp新代码第422课


new422.jsp

<%--
Created by IntelliJ IDEA.
User: user1
Date: 2022/7/18
Time: 21:36
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>我是Jack页面</title>
</head>
<body>
<h3>我是Jack页面</h3>
<%
String s = session.getId();
%>
<p>你在Jack页面中的当前session对象标识ID是:</p>
<%=s%>
<p>单击链接,跳转到Jerry的页面。</p>
<a href="new423_Example3_9Jerry.jsp">欢迎前往Jerry的页面</a>
</body>
</html>

举报

相关推荐

0 条评论