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

📄 login.jsp

📁 留言管理程序_使用Struts + DAO完成
💻 JSP
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<html>
	<head>
		<title>Struts+DAO 留言管理程序——登陆</title>
	</head>
	<body>
		<center>
			<h1>
				留言管理范例 —— Struts + DAO实现
			</h1>
			<hr>
			<br>
			<logic:present name="err" scope="request">
				<h2>
					${err}
				</h2>
			</logic:present>
			<html:form action="person.do" method="post">
				<table width="80%">
					<tr>
						<td colspan="2">
							用户登陆
						</td>
					</tr>
					<tr>
						<td>
							用户名:
						</td>
						<td>
							<html:text property="id"></html:text>
						</td>
					</tr>
					<tr>
						<td>
							密&nbsp;&nbsp;码:
						</td>
						<td>
							<html:password property="password"></html:password>
						</td>
					</tr>
					<tr>
						<td colspan="2">
							<input type="hidden" name="status" value="login">
							<input type="submit" value="登陆">
							<input type="reset" value="重置">
						</td>
					</tr>
				</table>
			</html:form>
		</center>
	</body>
</html>

⌨️ 快捷键说明

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