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

📄 success.jsp

📁 JSP入门与提高
💻 JSP
字号:
<jsp:useBean id="handle" class="login.LogBean" scope="request"/>
<html>
<head>
<title>验证成功</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
BODY {
	FONT-FAMILY: 宋体; FONT-SIZE: 9pt
}
TH {
	FONT-SIZE: 9pt
}
TD {
	FONT-SIZE: 9pt
}
</style>
</head>
<body>

<table border="=0" cellspacing="0" width="332" bgcolor="#F0F8FF" bordercolorlight="#4DA6FF" bordercolordark="#ECF5FF">
<TR>
    <TD colspan=2 align='center'><h4>祝贺你验证成功!</h4></td>
</TR>
<TR>
    <TD align='left'>注册名:</td>
    <td><jsp:getProperty name="handle" property="username"/>
    <span class="error"><%=handle.getErrorMsg("username")%></span>
    </TD>
</TR>
<TR>
    <TD align='left'>口&nbsp;&nbsp;令:</td>
    <td><jsp:getProperty name="handle" property="password"/>
    <span class="error"><%=handle.getErrorMsg("password")%></span>
    </TD>
</TR>
<TR>
    <TD align='left'>Email:</td>
    <td><jsp:getProperty name="handle" property="email"/>
    <span class="error"><%=handle.getErrorMsg("email")%></span>
    </TD>
</TR>
</table>
</form>
<br>
</center>
<jsp:useBean id="LogBean" scope="page" class="login.LogBean" />
</body>
</html>

⌨️ 快捷键说明

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