ResumeList.jsp~2~
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:5k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
  3. <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
  4. <html>
  5. <head>
  6. <title>NewsList</title>
  7. <script type="text/javascript">
  8. function doPost(params){
  9.   var action="<%=request.getContextPath()%>/Manage/Resume.do?todo=OpenResumeList"+"&"+params;
  10.   var form=document.getElementById("form");
  11.   form.action=action;
  12.   form.submit();
  13. }
  14. </script>
  15. <link href="<%=request.getContextPath()%>/Manage/Css/skinv2.0.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body bgcolor="#ffffff">
  18. <form name="form" method="post" action="InformationList.jsp">
  19. <table cellspacing="0" cellpadding="0" width="100%" border="0">
  20.   <tr bgcolor="#cfdbe8">
  21.     <td style="WIDTH: 20px" width="20" bgColor="#cfdbe8" height="19">
  22.       &nbsp;<img height="10" src="<%=request.getContextPath()%>/Manage/images/icon.gif" width="12" alt="" />
  23.     </td>
  24.     <td valign="middle" bgcolor="#cfdbe8" colSpan="2">&nbsp; 职位管理</td>
  25.   </tr>
  26.   <tr>
  27.     <td style="HEIGHT: 31px" valign="top" align="left" height="80">&nbsp;</td>
  28.     <td style="HEIGHT: 31px" valign="middle" align="left" colSpan="2">
  29.       &nbsp;<img src="<%=request.getContextPath()%>/Manage/images/edit.gif" alt="" />
  30.       &nbsp;应聘列表
  31.     </td>
  32.   </tr>
  33.   <tr>
  34.     <td style="HEIGHT: 1px" valign="top" align="left"></td>
  35.     <td style="HEIGHT: 1px" valign="top" align="left" width="820" bgcolor="#cfdbe8"></td>
  36.     <td style="HEIGHT: 1px" valign="top" align="left" width="144"></td>
  37.   </tr>
  38.   <tr>
  39.     <td style="HEIGHT: 381px" valign="top" align="left"></td>
  40.     <td style="HEIGHT: 381px" valign="top" align="left" colspan="2">
  41.       <table width="600" border="0" cellpadding="0" cellspacing="0" class="table_Left">
  42.         <tr>
  43.           <td height="30" width="200" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>应聘职位</strong></td>
  44.           <td width="120" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>应聘人</strong></td>
  45.           <td width="120" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>应聘时间</strong></td>
  46.           <td width="120" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>操作</strong></td>
  47.         </tr>
  48.       </table>
  49.       <div id="divList">
  50.         <c:forEach var="res" items="${pageInfo.rows}" varStatus="status">
  51.           <table width="600" border="0" cellpadding="0" cellspacing="0" class="table_Left">
  52.             <tr>
  53.               <td height="25" width="200" class="table_Right">
  54.                 &nbsp;<c:out value="${res.jobs.job_Title}" />
  55.               </td>
  56.               <td width="120" align="center" class="table_Right">
  57.                 <c:out value="${res.res_Name}" />
  58.               </td>
  59.               <td width="120" align="center" class="table_Right">
  60.                 <bean:write name="res" property="res_Time" format="yyyy年MM月dd日"/>
  61.               </td>
  62.               <td width="120" align="center" class="table_Right">
  63.                 <a href='<%=request.getContextPath()%>/Manage/Resume.do?todo=OpenResumeInfo&resID=<c:out value="${res.res_ID}" />'>编辑</a>
  64.                 &nbsp;&nbsp;|&nbsp;&nbsp;
  65.                 <a href='<%=request.getContextPath()%>/Manage/Resume.do?todo=DeleteResume&resID=<c:out value="${res.res_ID}" />'>删除</a>
  66.               </td>
  67.             </tr>
  68.           </table>
  69.         </c:forEach>
  70.       </div>
  71.       <table width="600" border="0" cellpadding="0" cellspacing="0" class="table_Left">
  72.         <tr>
  73.           <td valign="middle" colspan="9" align="center" class="STYLE1 table_Right" height="30">
  74.             <div align="right" >
  75.               共<c:out value="${pageInfo.totalRows}"/>条记录 共<c:out value="${pageInfo.totalPages}"/>页 当前第<c:out value="${pageInfo.currentPageNO+1}"/>页
  76.               &nbsp;&nbsp;&nbsp;&nbsp;
  77.               <c:choose>
  78.                 <c:when test="${pageInfo.firstPageNO>=pageInfo.currentPageNO}">
  79.                 第一页
  80.                 |
  81.                 上一页
  82.                 </c:when>
  83.                 <c:otherwise>
  84.                   <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.firstPageNO}"/>')">第一页</a>
  85.                   |
  86.                   <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.previousPageNO}"/>')">上一页</a>
  87.                 </c:otherwise>
  88.               </c:choose>
  89.               |
  90.               <c:choose>
  91.                 <c:when test="${pageInfo.lastPageNO<=pageInfo.currentPageNO}">
  92.                 下一页
  93.                 |
  94.                 最后页
  95.                 </c:when>
  96.                 <c:otherwise>
  97.                   <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.nextPageNO}"/>')">下一页</a>
  98.                   |
  99.                   <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.lastPageNO}"/>')">最后页</a>
  100.                 </c:otherwise>
  101.               </c:choose>&nbsp;&nbsp;
  102.             </div>
  103.           </td>
  104.         </tr>
  105.       </table>
  106.     </td>
  107.   </tr>
  108. </table>
  109. </form>
  110. </body>
  111. </html>