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

📄 showallpasswordtype.jsp

📁 一个oa系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="gbk"%>

<%@ 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"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
	<html:base />

	<title>密码类别信息列表</title>
	<style type="text/css">
<!--
body,td,th {
	font-size: 12px;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: underline;
	color: #333333;
}
a:active {
	text-decoration: none;
	color: #333333;
}
-->
</style>
	<link href="../css/css.css" rel="stylesheet" type="text/css" />

	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

</head>

<body>
	<table width="700" border="0" align="center" cellpadding="0"
		cellspacing="1">
		<tr>
			<td height="25">
				&nbsp;以下显示的是所有部门列表
			</td>
			<td width="160">
				&nbsp;
			</td>
		</tr>
	</table>
	<table width="700" border="0" align="center" cellpadding="0"
		cellspacing="1" bgcolor="#3868f8">
		<tr bgcolor="#B5B5FF">
			<td width="43" height="25" bgcolor="#A4B5E3">
				<div align="center">
					序号
				</div>
			</td>
			<td width="567" bgcolor="#A4B5E3">
				<div align="center">
					密码名称
				</div>
			</td>
			<td width="86" bgcolor="#A4B5E3">
				<div align="center">
					操 作
				</div>
			</td>
		</tr>
		<logic:iterate id="passwordType" name="passwordTypeList">
			<tr bgcolor="#B5B5FF">
				<td height="25" bgcolor="#FFFFFF">
					<div align="center">
						<bean:write name="passwordType" property="id" />
					</div>
				</td>
				<td bgcolor="#FFFFFF">
					<div align="center">
						<bean:write name="passwordType" property="passwordName" />
					</div>
				</td>
				<td bgcolor="#FFFFFF">
					<div align="center">
						<html:link page="/preUpdatePasswordType.do" paramId="id"
							paramName="passwordType" paramProperty="id">修改</html:link>
						<html:link page="/deletePasswordType.do" paramId="id"
							paramName="passwordType" paramProperty="id">删除</html:link>
					</div>
				</td>
			</tr>
		</logic:iterate>
	</table>
</body>
</html:html>

⌨️ 快捷键说明

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