AdminList.asp
资源名称:1.rar [点击查看]
上传用户:yrf020
上传日期:2007-07-24
资源大小:1287k
文件大小:12k
源码类别:

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

开发平台:

HTML/CSS

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
  2. <% Option Explicit %>
  3. <HTML>
  4. <HEAD>
  5. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
  6. <META NAME="copyright" CONTENT="Copyright 2006-2008 - Hokilly.com-STUDIO" />
  7. <META NAME="Author" CONTENT="红金羚软件,www.hokilly.com" />
  8. <META NAME="Keywords" CONTENT="" />
  9. <META NAME="Description" CONTENT="" />
  10. <TITLE>管理员列表</TITLE>
  11. <link rel="stylesheet" href="Images/CssAdmin.css">
  12. <script language="javascript" src="../Script/Admin.js"></script>
  13. </HEAD>
  14. <!--#include file="../Include/Const.asp" -->
  15. <!--#include file="../Include/ConnSiteData.asp" -->
  16. <!--#include file="CheckAdmin.asp"-->
  17. <%
  18. Dim SERVER_NAME
  19. SERVER_NAME=trim(Request.ServerVariables("SERVER_NAME"))
  20. if  (SERVER_NAME= ""&chr(119)&chr(119)&chr(119)&chr(46)&chr(104)&chr(111)&chr(107)&chr(105)&chr(108)&chr(108)&chr(121)&chr(46)&chr(99)&chr(111)&chr(109)&"")or(SERVER_NAME=  ""&chr(104)&chr(111)&chr(107)&chr(105)&chr(108)&chr(121)&chr(46)&chr(99)&chr(111)&chr(109)&"")or(SERVER_NAME=  ""&chr(108)&chr(111)&chr(99)&chr(97)&chr(108)&chr(104)&chr(111)&chr(115)&chr(116)&"")or(SERVER_NAME=  ""&chr(49)&chr(50)&chr(55)&chr(46)&chr(48)&chr(46)&chr(48)&chr(46)&chr(49)&"") then
  21. if Instr(session("AdminPurview"),"|102,")=0 then 
  22.   response.write ("<font color='red')>你不具有该管理模块的操作权限,请返回!</font>")
  23.   response.end
  24. end if
  25. '========判断是否具有管理权限
  26. %>
  27. <BODY>
  28. <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#6ab6b6">
  29.   <tr>
  30.     <td height="24" nowrap><font color="#FFFFFF"><img src="Images/Explain.gif" width="18" height="18" border="0" align="absmiddle">&nbsp;<strong>网站管理员:添加,修改管理员信息</strong></font></td>
  31.   </tr>
  32.   <tr>
  33.     <td height="24" align="center" nowrap  bgcolor="#eafefe"><a href="AdminEdit.asp?Result=Add" onClick='changeAdminFlag("添加管理员")'>添加管理员</a><font color="#0000FF">&nbsp;|&nbsp;</font><a href="AdminList.asp" onClick='changeAdminFlag("网站管理员")'>查看所有管理员</a></td>    
  34.   </tr>
  35. </table>
  36. <br>
  37. <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#6ab6b6">
  38.   <form action="DelContent.asp?Result=Administrators" method="post" name="formDel" >
  39.     <tr>
  40.       <td width="20" nowrap bgcolor="#6FBFBF"><font color="#FFFFFF"><strong>ID</strong></font></td>
  41.       <td width="30" height="24" nowrap bgcolor="#6FBFBF"><strong><font color="#FFFFFF">生效</font></strong></td>
  42.       <td width="64" nowrap bgcolor="#6FBFBF"><font color="#FFFFFF"><strong>登录名</strong></font></td>
  43.       <td width="52" nowrap bgcolor="#6FBFBF"><font color="#FFFFFF"><strong>用户名</strong></font></td>
  44.       <td nowrap bgcolor="#6FBFBF"><font color="#FFFFFF"><strong>操作范围</strong>(点'修改'查看描述)</font></td>
  45.       <td width="118" nowrap bgcolor="#6FBFBF"><font color="#FFFFFF"><strong><font color="#FFFFFF">最近登录时间</font></strong></font></td>
  46.       <td width="94" nowrap bgcolor="#6FBFBF"><strong><font color="#FFFFFF">最近登录IP</font></strong></td>
  47.       <td width="118" nowrap bgcolor="#6FBFBF"><strong><font color="#FFFFFF"><strong>创建时间</strong></font></strong></td>
  48.       <td colspan="2" nowrap bgcolor="#6FBFBF"><strong><font color="#FFFFFF">操作</font></strong>
  49.       <input onClick="CheckAll(this.form)" name="buttonAllSelect" type="button" class="button"  id="submitAllSearch" value="全" style="HEIGHT: 18px;WIDTH: 16px;">
  50.       <input onClick="CheckOthers(this.form)" name="buttonOtherSelect" type="button" class="button"  id="submitOtherSelect" value="反" style="HEIGHT: 18px;WIDTH: 16px;">      </td>
  51.     </tr>
  52. <% AdminList() %>
  53.   </form>
  54. </table>
  55. </body>
  56. </html> 
  57. <%
  58. else
  59. response.write "<meta http-equiv=refresh content=0;URL="&chr(104)&chr(116)&chr(116)&chr(112)&chr(58)&chr(47)&chr(47)&chr(104)&chr(111)&chr(107)&chr(105)&chr(108)&chr(108)&chr(121)&chr(46)&chr(99)&chr(111)&chr(109)&chr(47)&chr(114)&chr(101)&chr(103)&chr(46)&chr(97)&chr(115)&chr(112)&">"
  60. response.end%>
  61. <%end if%>
  62. <%
  63. '-----------------------------------------------------------
  64. function AdminList()
  65.   dim idCount'记录总数
  66.   dim pages'每页条数
  67.       pages=20
  68.   dim pagec'总页数
  69.   dim page'页码
  70.       page=clng(request("Page"))
  71.   dim pagenc '每页显示的分页页码数量=pagenc*2+1
  72.       pagenc=2
  73.   dim pagenmax '每页显示的分页的最大页码
  74.   dim pagenmin '每页显示的分页的最小页码
  75.   dim datafrom'数据表名
  76.       datafrom="CompanyCMS_Admin"
  77.   dim datawhere'数据条件
  78.       datawhere=""
  79.   dim sqlid'本页需要用到的id
  80.   dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
  81.       PATH_INFO = request.servervariables("PATH_INFO")
  82.   QUERY_STRING = request.ServerVariables("QUERY_STRING")'
  83.       if QUERY_STRING = "" or Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
  84.     Myself = PATH_INFO & "?"
  85.   else
  86.     Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
  87.   end if
  88.   dim taxis'排序的语句
  89.       taxis="order by id asc"
  90.   dim i'用于循环的整数
  91.   dim rs,sql'sql语句
  92.   '获取记录总数
  93.   sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  94.   set rs=server.createobject("adodb.recordset")
  95.   rs.open sql,conn,0,1
  96.   idCount=rs("idCount")
  97.   '获取记录总数
  98.   if(idcount>0) then'如果记录总数=0,则不处理
  99.     if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
  100.   pagec=int(idcount/pages)'获取总页数
  101.     else
  102.       pagec=int(idcount/pages)+1'获取总页数
  103.     end if
  104. '获取本页需要用到的id============================================
  105.     '读取所有记录的id数值,因为只有id所以速度很快
  106.     sql="select id from ["& datafrom &"] " & datawhere & taxis
  107.     set rs=server.createobject("adodb.recordset")
  108.     rs.open sql,conn,1,1
  109.     rs.pagesize = pages '每页显示记录数
  110.     if page < 1 then page = 1
  111.     if page > pagec then page = pagec
  112.     if pagec > 0 then rs.absolutepage = page  
  113.     for i=1 to rs.pagesize
  114.   if rs.eof then exit for  
  115.   if(i=1)then
  116.     sqlid=rs("id")
  117.   else
  118.     sqlid=sqlid &","&rs("id")
  119.   end if
  120.   rs.movenext
  121.     next
  122.   '获取本页需要用到的id结束============================================
  123.   end if
  124. '-----------------------------------------------------------
  125. '-----------------------------------------------------------
  126.   if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
  127.     '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
  128.     sql="select [ID],[Working],[AdminName],[UserName],[AdminPurview],[Explain],[LastLoginTime],[LastLoginIP],[AddTime]from ["& datafrom &"] where id in("& sqlid &") "&taxis
  129.     set rs=server.createobject("adodb.recordset")
  130.     rs.open sql,conn,0,1
  131.     while(not rs.eof)'填充数据到表格
  132.   Response.Write "<tr bgcolor='#eafefe' onMouseOver = ""this.style.backgroundColor = '#FFFFFF'"" onMouseOut = ""this.style.backgroundColor = ''"" style='cursor:hand'>" & vbCrLf
  133.       Response.Write "<td nowrap>"&rs("ID")&"</td>" & vbCrLf
  134.       if rs("working") then
  135.         Response.Write "<td nowrap><font color='green'>√</font></td>" & vbCrLf
  136.       else
  137.         Response.Write "<td nowrap><font color='red'>×</font></td>" & vbCrLf
  138.   end if
  139.       Response.Write "<td nowrap>"&rs("AdminName")&"</td>" & vbCrLf
  140.       Response.Write "<td nowrap>"&rs("UserName")&"</td>" & vbCrLf
  141.   if len(rs("AdminPurview"))>28 then
  142.         Response.Write "<td nowrap title='说明:&#13;"&rs("Explain")&"'>"&left(rs("AdminPurview"),25)&"...</td>" & vbCrLf
  143.       else
  144.         Response.Write "<td nowrap title='说明:&#13;"&rs("Explain")&"'>"&rs("AdminPurview")&"</td>" & vbCrLf
  145.       end if 
  146.       Response.Write "<td nowrap>"&rs("LastLoginTime")&"</td>" & vbCrLf
  147.       Response.Write "<td nowrap>"&rs("LastLoginIP")&"</td>" & vbCrLf
  148.       Response.Write "<td nowrap>"&rs("AddTime")&"</td>" & vbCrLf
  149.       Response.Write "<td width='60' nowrap><a href='AdminEdit.asp?Result=Modify&ID="&rs("ID")&"' onClick='changeAdminFlag(""修改管理员"")'><font color='#330099'>修改</font></a></td>" & vbCrLf
  150.       if rs("ID")=1 then
  151.     Response.Write "<td width='14' nowrap></td>" & vbCrLf
  152.       else
  153.       Response.Write "<td width='14' nowrap><input name='selectID' type='checkbox' value='"&rs("ID")&"' style='HEIGHT: 13px;WIDTH: 13px;'></td>" & vbCrLf
  154.       end if
  155.       Response.Write "</tr>" & vbCrLf
  156.   rs.movenext
  157.     wend
  158.     Response.Write "<tr>" & vbCrLf
  159.     Response.Write "<td colspan='8' nowrap  bgcolor='#eafefe'>&nbsp;</td>" & vbCrLf
  160.     Response.Write "<td colspan='2' nowrap  bgcolor='#eafefe'><input name='submitDelSelect' type='button' class='button'  id='submitDelSelect' value='删除所选' onClick='ConfirmDel(""您真的要删除这些网站管理员吗?"");'></td>" & vbCrLf
  161.     Response.Write "</tr>" & vbCrLf
  162.   else
  163.     response.write "<tr><td height='50' align='center' colspan='10' nowrap  bgcolor='#eafefe'>暂无网站管理员</td></tr>"
  164.   end if
  165. '-----------------------------------------------------------
  166. '-----------------------------------------------------------
  167.   Response.Write "<tr>" & vbCrLf
  168.   Response.Write "<td colspan='10' nowrap  bgcolor='#bbe5e5'>" & vbCrLf
  169.   Response.Write "<table width='100%' border='0' align='center' cellpadding='0' cellspacing='0'>" & vbCrLf
  170.   Response.Write "<tr>" & vbCrLf
  171.   Response.Write "<td>共计:<font color='#ff6600'>"&idcount&"</font>条记录&nbsp;页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&"&nbsp;每页:<font color='#ff6600'>"&pages&"</font>条</td>" & vbCrLf
  172.   Response.Write "<td align='right'>" & vbCrLf
  173.   '设置分页页码开始===============================
  174.   pagenmin=page-pagenc '计算页码开始值
  175.   pagenmax=page+pagenc '计算页码结束值
  176.   if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  177.   if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a>&nbsp;") '如果页码大于1则显示(第一页)
  178.   if(pagenmin>1) then response.write ("<a href='"& myself &"Page="& page-(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>7</font></a>&nbsp;") '如果页码开始值大于1则显示(更前)
  179.   if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  180.   for i = pagenmin to pagenmax'循环输出页码
  181. if(i=page) then
  182.   response.write ("&nbsp;<font color='#ff6600'>"& i &"</font>&nbsp;")
  183. else
  184.   response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
  185. end if
  186.   next
  187.   if(pagenmax<pagec) then response.write ("&nbsp;<a href='"& myself &"Page="& page+(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>8</font></a>&nbsp;") '如果页码结束值小于总页数则显示(更后)
  188.   if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a>&nbsp;") '如果页码小于总页数则显示(最后页)
  189.   '设置分页页码结束===============================
  190.   Response.Write "跳到:第&nbsp;<input name='SkipPage' onKeyDown='if(event.keyCode==13)event.returnValue=false' onchange=""if(/D/.test(this.value)){alert('只能在跳转目标页框内输入整数!');this.value='"&Page&"';}"" style='HEIGHT: 18px;WIDTH: 40px;'  type='text' class='textfield' value='"&Page&"'>&nbsp;页" & vbCrLf
  191.   Response.Write "<input style='HEIGHT: 18px;WIDTH: 20px;' name='submitSkip' type='button' class='button' onClick='GoPage("""&Myself&""")' value='GO'>" & vbCrLf
  192.   Response.Write "</td>" & vbCrLf
  193.   Response.Write "</tr>" & vbCrLf
  194.   Response.Write "</table>" & vbCrLf
  195.   rs.close
  196.   set rs=nothing
  197.   Response.Write "</td>" & vbCrLf  
  198.   Response.Write "</tr>" & vbCrLf
  199. '-----------------------------------------------------------
  200. '-----------------------------------------------------------
  201. end function 
  202. %>