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

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 job 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="3%" height="22"><font color="#FFFFFF"><b></b> </font></td>
  40.       <td width="15%" height="22"><span class="style1">岗位</span></td>
  41.       <td width="12%"><b><font color="#FFFFFF">数量</font></b></td>
  42.       <td width="53%"><span class="style1">待 遇</span></td>
  43.       <td width="17%"><span class="style1">发布时间</span></td>
  44.     </tr>
  45.     <%
  46. if rs.eof then
  47. response.write "<tr><td colspan='7'><font color='red'>系统中还没有录入任何信息!</font></td></tr>"
  48. else
  49. Do while not rs.eof and i<rs.pagesize
  50. %>
  51.     <tr> 
  52.       <td width="3%"> 
  53.         <div align="center"> 
  54.           <input type="checkbox" id="checkbox" value="<%=rs("id")%>" name="checkbox" onClick="chkclick();">
  55.         </div>      </td>
  56.       <td width="15%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("job")%></a></td>
  57.       <td width="12%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("num")%></a></td>
  58.       <td width="53%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("payment")%></a></td>
  59.       <td width="17%"><a href="List_Edit.asp?checkbox=<%=rs("id")%>"><%=rs("regtime")%></a></td>
  60.     </tr>
  61.     <%
  62. rs.MoveNext
  63. i=i+1
  64. Loop
  65. end if
  66. %>
  67.   </table>
  68.   <table width="100%" height="30" border="0" align="center" cellpadding="0" cellspacing="0"> 
  69. <tr> <td width="23%"> <input type=checkbox name='chkall' onClick='chooseall(document.hrform.checkbox,this);'> 
  70. 全选 <input type=checkbox name='chkl' onClick='choosefalse(document.hrform.checkbox,this);'> 
  71. 反选 </td><td width="77%"> <div align="right"> 共 <%=rs.recordcount%> 条 页 次 <%=page%>/<%=rs.pagecount%> 
  72. <a href="?PAGE=1">首页</a> <%if rs.pagecount>1 then 
  73.      if page=1 then%> | 上页 | <a href="?PAGE=<%=(page+1)%>"> 下页</a> <%else
  74.       if page=rs.pagecount then%> <a href="?PAGE=<%=(page-1)%>">上页</a> 
  75. | 下页 <%else%> | <a href="?PAGE=<%=(page-1)%>">上页</a> | <a href="?PAGE=<%=(page+1)%>"> 
  76. 下页</a> <%end if%> <%end if%> <%end if%> | <a href="?PAGE=<%=rs.pagecount%>"> 
  77. 尾页</a> 第 <select name="sel_page" onChange="javascript:location=this.options[this.selectedIndex].value;"> 
  78. <%
  79.        for i = 1 to rs.PageCount
  80.        if i = page then%> <option value="?PAGE=<%=i%>" selected><%=i%></option> 
  81. <%else%> <option value="?PAGE=<%=i%>"><%=i%></option> <%
  82.           end if
  83.         next
  84.         %> </select> 页</div></td></tr> </table></form>
  85. <table width="100%" border="0" cellspacing="0" cellpadding="1">
  86.   <tr> 
  87.     <td> 
  88.       <input type="button" value="刷新" onClick="history.go(0);" name="button2">
  89.       <INPUT TYPE="button" NAME="Submit" VALUE="重载" onClick="location.href='?';">
  90.       <input type="button" value="查看" onClick="record_show();" name="show" disabled>
  91.       <input name="add" type="button" id="add" onClick="record_add();" value="添加">
  92.       <input type="button" value="修改" onClick="record_edit();" name="edit" disabled>
  93.       <input type="button" value="删除" onClick="record_del();" name="del" disabled>
  94.       <DIV ALIGN="RIGHT"></DIV>
  95.     </td>
  96.     <form name="form2" method="post" action="?">
  97.     </form>
  98.   </tr>
  99. </table>
  100. <script src="Use.js"></script>
  101. </body>
  102. </html>
  103. <%
  104. call COCLS
  105. %>