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

📄 acceptdoc.jsp

📁 tomcat最新安装程序
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="cn.com.aheadsoft.recordset.AcceptRegisterRecordSet" %>
<%@ page import="cn.com.aheadsoft.util.StringFormat" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
<title>我的来文列表界面</title>
<script>
<!--
	function openWin(url) {
		window.open(url,'','toolbar=no,location=no,menubar=no,resizable=1,scrollbars=yes,left=0,top=0,width=800,height=600');
	}
-->
</script>
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" >
 <tr >
	<td class="trA">&nbsp;您的位置:公文管理 >> 收文管理 >> <font class="fontcolor">我的收文</font></td>
 </tr>
   <tr> 
    <td height="8"></td>
  </tr>    
  <tr>
    <td align="center" >
        <table border="0" width="98%" align="center"  bordercolor="A1B7DB" class="collapse">
          <tr > 
            
          <td class="tdA" colspan="9">
            我的收文列表</td>
          </tr>
        <tr>
			<td width="9%" class="tdB" align="center" >序号</td>
			<td width="29%" class="tdB" align="center" >标题</td>
			<td width="17%" class="tdB" align="center" >文号</td>
			<td width="19%" class="tdB" align="center" >来文单位</td>
			
          <td width="9%" class="tdB" align="center" nowrap>收文日期</td>
			<td width="9%" class="tdB" align="center" nowrap>紧急程度</td>
			
          <td width="8%" class="tdB" align="center" nowrap>收文处理单</td>
		</tr>
		<%
			AcceptRegisterRecordSet recordset1 = (AcceptRegisterRecordSet)request.getAttribute("acceptdoc");
			if(recordset1 != null && recordset1.size() > 0) {
				int num = 1;
				while(recordset1.next()) {
		%>
		<tr<%
		if(num%2==0){
		%> class="bgcolor"<%}%>>
			<td width="9%" class="common"  align="center"><%= num %></td>
			<td width="29%" class="common" ><a href="javascript:openWin('/krm/servlet/AcceptDocServlet?status=q&module=adv&ADI_ID=<%= recordset1.getADI_ID() %>');"><%= StringFormat.Source2GB(recordset1.getADI_Title()) %></a></td>
			<td width="17%" class="common"  align="center"><%= StringFormat.Source2GB(recordset1.getAR_SN()) %></td>
			<td width="19%" class="common"  ><%= StringFormat.Source2GB(recordset1.getADI_SendOrgan()) %></td>
			<td width="9%" class="common"  align="center" nowrap><%= StringFormat.Source2GB(recordset1.getAR_AcceptDate()) %></td>
			<td width="9%" class="common"  align="center"><%= StringFormat.Source2GB(recordset1.getADI_Urgent()) %></td>
			<td width="8%" class="common"  align="center"><a href="javascript:openWin('/krm/servlet/TransferServlet?status=q&docid=<%= recordset1.getADI_ID() %>&module=0&opt=vm');">查看</a></td>
        </tr>
		<%
					num++;
				}
			}
		%>
		<tr><td colspan="7" class="tdC">&nbsp;</td></tr>		
		</table>
   </td>
</tr>	
</table>
 
</body>
</html>

⌨️ 快捷键说明

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