📄 thank_you.jsp
字号:
<%@ page session="true" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%-- Set page title --%>
<c:set var="pageTitle">Duke's Soccer League: Registration</c:set>
<%-- Generate the HTML response --%>
<html>
<head>
<title>${pageTitle}</title>
</head>
<body bgcolor='white'>
<%-- Generate page heading --%>
<!-- Page Heading -->
<table border='1' cellpadding='5' cellspacing='0' width='400'>
<tr bgcolor='#CCCCFF' align='center' valign='center' height='20'>
<td><h3>${pageTitle}</h3></td>
</tr>
</table>
<%-- Present the main body --%>
<p>
Thank you, ${player.name}, for register for the <i>${league.title}</i> league.
</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -