📄 tjxzyymana.jsp~1~
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ page import="com.j2ee.func.jswz.*" %>
<%@ page import="java.util.Vector" %>
<%
Vector vct=(Vector)request.getAttribute("vct");
Vector vctgq=(Vector)request.getAttribute("vctgq");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="file:///D|/Tomcat%205.0/webapps/ROOT/j2ee/j2eemanage/css/indexcss.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="700" height="30" border="1" align="center">
<tr>
<td width="688" bgcolor="#f7f7ff"><font color="#FF0000">推荐管理</font></td>
</tr>
</table>
<table width="700" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#9BD7FF">
<tr>
<td width="150" height="18">应用程序正在推荐</td>
<td width="145"> </td>
<td width="106"> </td>
<td width="143"> </td>
<td width="134"> </td>
</tr>
<tr>
<td width="104" height="28" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">推荐编号</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">文章标题</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">推荐开始日期</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">推荐结束日期</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">操作</td>
</tr>
<% int vcti=0;
String colorp="#ffffff";
while(vcti<vct.size()){
TjxzInfo ti=(TjxzInfo)vct.elementAt(vcti);
if(vcti%2!=0){colorp="#E6F2FF";}
%>
<tr>
<td width="104" height="28" align="center" bgcolor="<%=colorp%>"><%=ti.getId() %></td>
<td width="140" align="center" bgcolor="<%=colorp%>"><%=ti.getXztitle() %></td>
<td width="140" align="center" bgcolor="<%=colorp%>"><%=ti.getBegindate() %></td>
<td width="140" align="center" bgcolor="<%=colorp%>"><%=ti.getEnddate()%></td>
<td width="140" align="center" bgcolor="<%=colorp%>"><a href="addtjxzyyservlet?type=yy&typeflag=delete&id=<%=ti.getId()%>">删除</a></td>
</tr>
<%
colorp="#ffffff";
vcti++;
} %>
</table>
<table width="700" height="30" border="1" align="center">
<tr>
<td width="688" bgcolor="#f7f7ff"><font color="#FF0000">过期管理</font></td>
</tr>
</table>
<table width="700" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#9BD7FF">
<tr>
<td width="150" height="18">应用程序推荐过期</td>
<td width="145"> </td>
<td width="106"> </td>
<td width="143"> </td>
<td width="134"> </td>
</tr>
<tr>
<td width="104" height="28" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">推荐编号</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">文章标题</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">推荐开始日期</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">推荐结束日期</td>
<td width="140" align="center" bordercolor="#9BD7FF" bgcolor="#9BD7FF">操作</td>
</tr>
<% int vctigq=0;
String colorp1="#ffffff";
while(vctigq<vctgq.size()){
TjxzInfo ti=(TjxzInfo)vctgq.elementAt(vctigq);
if(vctigq%2!=0){colorp1="#E6F2FF";}
%>
<tr>
<td width="104" height="28" align="center" bgcolor="<%=colorp1%>"><%=ti.getId() %></td>
<td width="140" align="center" bgcolor="<%=colorp1%>"><%=ti.getXztitle() %></td>
<td width="140" align="center" bgcolor="<%=colorp1%>"><%=ti.getBegindate() %></td>
<td width="140" align="center" bgcolor="<%=colorp1%>"><%=ti.getEnddate()%></td>
<td width="140" align="center" bgcolor="<%=colorp1%>"><a href="addtjxzyyservlet?type=yy&typeflag=delete&id=<%=ti.getId()%>">删除</a></td>
</tr>
<%
colorp1="#ffffff";
vctigq++;
} %>
</table>
<form name="form1" method="post" action="addtjxzyyservlet?type=yy&typeflag=add">
<table width="700" border="0" align="center">
<tr>
<td width="122">应用程序推荐增加</td>
<td width="334"> </td>
<td width="230"> </td>
</tr>
<tr>
<td height="54" colspan="3"> 推荐的编号
<input name="bianhao" type="text" id="bianhao">
<a href="getallzlservlet?type=get&pageno=1&sortid=sentdate&sorttype=desc">查询文章编号</a>
</td>
</tr>
<tr>
<td colspan="3">开始日期: <input name="begindate" type="text" id="begindate"></td>
</tr>
<tr>
<td colspan="3">结束日期: <input name="enddate" type="text" id="enddate"></td>
</tr>
<tr align="center">
<td colspan="3"><input type="submit" name="Submit" value="提交"></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -