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

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <!--#include file="../../inc/conn.asp"-->
  2. <!--#include file="../../inc/func.asp"-->
  3. <html>
  4. <head>
  5. <title>信息列表</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  7. <LINK REL="stylesheet" HREF="../images/style.css" TYPE="text/css"> <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 words1 order by view,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="form1" method="post"> <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR>
  35.       <TD>留言列表↓</TD>
  36.     </TR></TABLE><table width="100%" border="1" cellspacing="0" cellpadding="2" align="center" bordercolordark="#ffffff" bordercolorlight="#000000"> 
  37. <tr bgcolor="#3366CC"> <td width="29" height="25">&nbsp; </td>
  38.       <td width="505" height="25" bgcolor="#3366CC"><div align="center"><span class="style1">信息内容</span></div></td>
  39.       <td width="174" height="25"><div align="center"><span class="style1">联系人</span></div></td>
  40.       <td width="174"><div align="center"><span class="style1">国家</span></div></td>
  41.       <td width="174"><div align="center"><span class="style1">IP</span></div></td>
  42.       <td width="174"><div align="center"><span class="style1">添加日期</span></div></td>
  43. </tr> 
  44. <%
  45. if rs.eof then
  46. response.write "<tr><td colspan='5'><font color='red'>系统中还没有录入任何信息!</font></td></tr>"
  47. else
  48. Do while not rs.eof and i<rs.pagesize
  49. %> <tr <%if rs("view")=1 then response.write "bgcolor='#CCCCCC'"%> > <td width="29" height="25"> <div align="center"> <input type="checkbox" id="checkbox" value="<%=rs("id")%>" name="checkbox" onClick="chkclick();"> 
  50. </div></td>
  51.       <td width="505" height="25">&nbsp;<%=left(rs("words"),20)%></td>
  52.       <td width="174" height="25">&nbsp;<%=rs("name")%></td>
  53.       <td width="174">&nbsp;<%=rs("country")%></td>
  54.       <td width="174">&nbsp;<%=rs("ip")%>&nbsp;<%=address(rs("ip"))%></td>
  55.       <td width="174">&nbsp;<%=rs("date")%></td>
  56. </tr> 
  57. <%
  58. rs.MoveNext
  59. i=i+1
  60. Loop
  61. end if
  62. %> </table>
  63.     <table width="100%" height="30" border="0" align="center" cellpadding="0" cellspacing="0"> 
  64. <tr> <td width="23%"> <input type=checkbox name='chkall' onClick='chooseall(document.form1.checkbox,this);'> 
  65. 全选 <input type=checkbox name='chkl' onClick='choosefalse(document.form1.checkbox,this);'> 
  66. 反选 </td><td width="77%"> <div align="right"> 共 <%=rs.recordcount%> 条 页 次 <%=page%>/<%=rs.pagecount%> <a href="?PAGE=1">首页</a>
  67.     <%if rs.pagecount>1 then 
  68.      if page=1 then%>
  69. | 上页 | <a href="?PAGE=<%=(page+1)%>"> 下页</a>
  70. <%else
  71.       if page=rs.pagecount then%>
  72. <a href="?PAGE=<%=(page-1)%>">上页</a> | 下页
  73. <%else%>
  74. | <a href="?PAGE=<%=(page-1)%>">上页</a> | <a href="?PAGE=<%=(page+1)%>"> 下页</a>
  75. <%end if%>
  76. <%end if%>
  77. <%end if%>
  78. | <a href="?PAGE=<%=rs.pagecount%>"> 尾页</a> 第
  79. <select name="sel_page" onChange="javascript:location=this.options[this.selectedIndex].value;">
  80.   <%
  81.        for i = 1 to rs.PageCount
  82.        if i = page then%>
  83.   <option value="?PAGE=<%=i%>" selected><%=i%></option>
  84.   <%else%>
  85.   <option value="?PAGE=<%=i%>"><%=i%></option>
  86.   <%
  87.           end if
  88.         next
  89.         %>
  90. </select>
  91. 页</div></td></tr> </table></form><table width="100%" border="0" cellspacing="0" cellpadding="1"> 
  92. <tr> <td WIDTH="54%"> <input type="button" value="刷新" onClick="history.go(0);" name="button2">
  93.     <INPUT TYPE="button" NAME="Submit" VALUE="重载" onClick="location.href='?';">
  94.     <input type="button" value="查看" onClick="record_show();" name="show" disabled>
  95.     <input type="button" value="删除" onClick="record_del();" name="del" disabled></td><form name="form2" method="post" action="?"></form></tr> 
  96. </table>
  97. <script src="List_Use.js"></script> 
  98. </body>
  99. </html>
  100. <%
  101. call COCLS
  102. %>