List.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:5k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <!--#include file="../../inc/conn.asp"-->
  2. <html>
  3. <head>
  4. <title>记录列表</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <LINK REL="stylesheet" HREF="../images/ccs.css" TYPE="text/css"> 
  7. <style type="text/css">
  8. <!--
  9. .style1 {
  10. color: #FFFFFF;
  11. font-weight: bold;
  12. }
  13. -->
  14. </style>
  15. </head>
  16. <body bgcolor="#FFFFFF" text="#000000">
  17. <%
  18. Dim sql
  19. sql=" select * from jobs order by id desc "
  20. Dim rs
  21. Set rs=Server.CreateObject("ADODB.RecordSet")
  22. rs.open sql,conn,1,1
  23. Dim page,i
  24. if request("page")="" then
  25. page=1
  26. else
  27. page=clng(request("page"))
  28. end if
  29. i=0
  30. rs.pagesize=15
  31. if page<1 then page=1
  32. if page>rs.pagecount then page=rs.pagecount 
  33. if rs.pagecount>0 then rs.absolutepage=page
  34. %> <form name="hrform" method="post"> <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR>
  35.       <TD>招聘信息管理↓</TD>
  36.     </TR></TABLE>
  37.   <table width="100%" border="1" cellspacing="0" cellpadding="2" align="center" bordercolordark="#ffffff" bordercolorlight="#000000">
  38.     <tr bgcolor="#3366CC"> 
  39.       <td width="4%" height="22"><font color="#FFFFFF"><b></b> </font></td>
  40.       <td width="10%" height="22"><span class="style1">岗位</span></td>
  41.       <td width="8%"><b><font color="#FFFFFF">姓名</font></b></td>
  42.       <td width="5%"><span class="style1">性别</span></td>
  43.       <td width="7%"><span class="style1">学历</span></td>
  44.       <td width="26%"><span class="style1">专业</span></td>
  45.       <td width="18%"><span class="style1">毕业院校</span></td>
  46.       <td width="14%"><span class="style1">现居城市</span></td>
  47.       <td width="8%"><span class="style1">发布时间</span></td>
  48.     </tr>
  49.     <%
  50. if rs.eof then
  51. response.write "<tr><td colspan='7'><font color='red'>系统中还没有录入任何信息!</font></td></tr>"
  52. else
  53. Do while not rs.eof and i<rs.pagesize
  54. %>
  55.     <tr> 
  56.       <td width="4%"> 
  57.         <div align="center"> 
  58.           <input type="checkbox" id="checkbox" value="<%=rs("id")%>" name="checkbox" onClick="chkclick();">
  59.       </div>      </td>
  60.       <td width="10%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("job")%></a></td>
  61.       <td width="8%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("name")%></a></td>
  62.       <td><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("sex")%>&nbsp;</a></td>
  63.       <td><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("xl")%>&nbsp;</a></td>
  64.       <td><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("zy")%>&nbsp;</a></td>
  65.       <td><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("college")%>&nbsp;</a></td>
  66.       <td><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("city")%>&nbsp;</a></td>
  67.       <td width="8%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("atime")%></a></td>
  68.     </tr>
  69.     <%
  70. rs.MoveNext
  71. i=i+1
  72. Loop
  73. end if
  74. %>
  75.   </table>
  76.   <table width="100%" height="30" border="0" align="center" cellpadding="0" cellspacing="0"> 
  77. <tr> <td width="23%"> <input type=checkbox name='chkall' onClick='chooseall(document.hrform.checkbox,this);'> 
  78. 全选 <input type=checkbox name='chkl' onClick='choosefalse(document.hrform.checkbox,this);'> 
  79. 反选 </td><td width="77%"> <div align="right"> 共 <%=rs.recordcount%> 条 页 次 <%=page%>/<%=rs.pagecount%> 
  80. <a href="?PAGE=1">首页</a> <%if rs.pagecount>1 then 
  81.      if page=1 then%> | 上页 | <a href="?PAGE=<%=(page+1)%>"> 下页</a> <%else
  82.       if page=rs.pagecount then%> <a href="?PAGE=<%=(page-1)%>">上页</a> 
  83. | 下页 <%else%> | <a href="?PAGE=<%=(page-1)%>">上页</a> | <a href="?PAGE=<%=(page+1)%>"> 
  84. 下页</a> <%end if%> <%end if%> <%end if%> | <a href="?PAGE=<%=rs.pagecount%>"> 
  85. 尾页</a> 第 <select name="sel_page" onChange="javascript:location=this.options[this.selectedIndex].value;"> 
  86. <%
  87.        for i = 1 to rs.PageCount
  88.        if i = page then%> <option value="?PAGE=<%=i%>" selected><%=i%></option> 
  89. <%else%> <option value="?PAGE=<%=i%>"><%=i%></option> <%
  90.           end if
  91.         next
  92.         %> </select> 页</div></td></tr> </table></form>
  93. <table width="100%" border="0" cellspacing="0" cellpadding="1">
  94.   <tr> 
  95.     <td> 
  96.       <input type="button" value="刷新" onClick="history.go(0);" name="button2">
  97.       <INPUT TYPE="button" NAME="Submit" VALUE="重载" onClick="location.href='?';">
  98.       <input type="button" value="查看" onClick="record_show();" name="show" disabled>
  99.       <input type="button" value="删除" onClick="record_del();" name="del" disabled>
  100.       <DIV ALIGN="RIGHT"></DIV>
  101.     </td>
  102.     <form name="form2" method="post" action="?">
  103.     </form>
  104.   </tr>
  105. </table>
  106. <script src="Use.js"></script>
  107. </body>
  108. </html>
  109. <%
  110. call COCLS
  111. %>