📄 showallpasswordweekly.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<jsp:directive.page import="java.util.ArrayList"/>
<jsp:directive.page import="com.oa.db.PasswordWeeklyManager"/>
<%@ 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>showAllPasswordWeekly.jsp</title>
<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">
-->
<style type="text/css">
<!--
body,td,th {
font-size: 12px;
}
body {
margin-left: 2px;
margin-top: 2px;
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="../../oa/css/css.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-size: 14px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<table width="742" border="0" cellpadding="0" cellspacing="1"
bgcolor="#3868F8">
<tr>
<td width="740" height="25" bgcolor="#A4B5E3">
<p class="STYLE1">
密码管理
</p>
</td>
</tr>
<tr>
<td height="20" bgcolor="#FFFFFF" valign="top"
style="padding-top:4px; padding-bottom:3px; padding-left:4px; padding-right:4px;">
<table width="731" border="0" cellspacing="1" cellpadding="0">
<%ArrayList<PasswordWeeklyManager> list = new ArrayList<PasswordWeeklyManager>();
list = (ArrayList<PasswordWeeklyManager>) request.getAttribute("passwordWeeklyList");
System.out.println(list.size());
%>
<logic:iterate id="passwordWeekly" name="passwordWeeklyList"
indexId="rownum">
<%
if (rownum % 4 == 0) {
%>
<tr>
<%
}
%>
<td width="197" height="25" align="center">
<html:hidden property="pdWeeklyCycle" name="passwordWeekly" />
<a
href="<%=request.getContextPath()%>/showOnePasswordWeekly.do?pdWeeklyCycle=${passwordWeekly.pdWeeklyCycle}"
target="_self">${passwordWeekly.pdWeeklyCycle}</a>
</td>
<%
if (rownum % 4 == 3) {
System.out.println("rownum4");
%>
</tr>
<%
}
%>
</logic:iterate>
<tr>
<td height="1" colspan="4"
background="<%=request.getContextPath()%>/image/line.gif"></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td width="800" height="24" bgcolor="#E7E7E7">
说明:点击进入各周期密码管理表。
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -