⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thank_you.jsp

📁 在线足球社区源代码
💻 JSP
字号:
<%@ page import="web.domain.*" errorPage="error_page.jsp" %>

<%--
		League league = (League)request.getAttribute("league");
		Player player = (Player)request.getAttribute("player");
--%>

<jsp:useBean id="league" class="web.domain.League" scope="session" />
<jsp:useBean id="player" class="web.domain.Player" scope="session" />

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Thank You Page</title>
<link rel="stylesheet" href="styles/soccer.css" type="text/css">
</head>

<body><table width="640" border="1" align="center">
  <tr>
    <td><table width="100%" >
      <tr>
        <td width="25%" align="center"><img src="images/DukeKick.gif" width="100" height="65"></td>
        <td width="75%" bgcolor="#CCCCFF" class="banner_text">
		<jsp:include page="incl/banner.jsp">
			<jsp:param name="subTitle" value="Thank You!" />
		</jsp:include>
		</td>
      </tr>
      <tr>
        <td valign="top" bgcolor="#CCCCFF">
		<jsp:include page="incl/side-bar.jsp" />
		</td>
        <td valign="middle"><table width="100%" >
          <tr>
            <td align="center" bgcolor="#CCCCFF" class="content_header">Registration Successful!(JavaBean)</td>
          </tr>
          <tr>
            <td align="center" class="content_text">
			Thank you,<b><%--=player.getName()--%><jsp:getProperty name="player" property="name" /></b>
			 for registering in the <b><%--=league.getSeason()--%><jsp:getProperty name="league" property="season" />
			 /<%--=league.getYear()--%><jsp:getProperty name="league" property="year" /></b> league. </td>
          </tr>
        </table>
		
		</td>
      </tr>
      <tr align="right">
        <td colspan="2" class="footer_text">
		<jsp:include page="incl/copyright.jsp" />
		</td>
        </tr>
    </table></td>
  </tr>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -