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

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

开发平台:

HTML/CSS

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
  2. <% Option Explicit %>
  3. <HTML xmlns="http://www.w3.org/1999/xhtml">
  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. <style type="text/css">
  14. <!--
  15. .STYLE1 {font-size: medium;
  16. font-weight: bold;
  17. color: #ff0000;
  18. }
  19. -->
  20. </style>
  21. </HEAD>
  22. <!--#include file="../Include/Const.asp" -->
  23. <!--#include file="../Include/ConnSiteData.asp" -->
  24. <!--#include file="CheckAdmin.asp"-->
  25. <%
  26. Dim SERVER_NAME
  27. SERVER_NAME=trim(Request.ServerVariables("SERVER_NAME"))
  28. 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
  29. if Instr(session("AdminPurview"),"|113,")=0 then 
  30.   response.write ("<font color='red')>你不具有该管理模块的操作权限,请返回!</font>")
  31.   response.end
  32. end if
  33. '========判断是否具有管理权限
  34. %>
  35. <BODY>
  36. <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#6ab6b6">
  37.   <tr>
  38.     <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>
  39.   </tr>
  40.   <tr>
  41.     <td height="24" align="center" nowrap  bgcolor="#eafefe"><a href="NavigationEdit.asp?Result=Add" onClick='changeAdminFlag("添加导航栏目")'>添加导航栏目</a><font color="#0000FF">&nbsp;|&nbsp;</font><a href="NavigationList.asp" onClick='changeAdminFlag("导航栏目列表")'>查看导航栏目</a></td>    
  42.   </tr>
  43. </table>
  44. <br>
  45. <p class="STYLE1">免费版不提供此功能!请联系Tel:13915064582
  46.   或者QQ:15916190 购买商业正式版!</p>
  47. <p>详情请见:<a href="http://www.hokilly.com" target="_blank">http://www.hokilly.com</a></p>
  48. <p>常州红金羚软件技术有限公司 </p>
  49. <p></p>
  50. </body>
  51. </html> 
  52. <%
  53. else
  54. 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)&">"
  55. response.end%>
  56. <%end if%>
  57. <%
  58. '-----------------------------------------------------------
  59. function NavigationList()
  60.   dim idCount'记录总数
  61.   dim pages'每页条数
  62.       pages=20
  63.   dim pagec'总页数
  64.   dim page'页码
  65.       page=clng(request("Page"))
  66.   dim pagenc '每页显示的分页页码数量=pagenc*2+1
  67.       pagenc=2
  68.   dim pagenmax '每页显示的分页的最大页码
  69.   dim pagenmin '每页显示的分页的最小页码
  70.   dim datafrom'数据表名
  71.       datafrom="CompanyCMS_Navigation"
  72.   dim datawhere'数据条件
  73.       datawhere=""
  74.   dim sqlid'本页需要用到的id
  75.   dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
  76.       PATH_INFO = request.servervariables("PATH_INFO")
  77.   QUERY_STRING = request.ServerVariables("QUERY_STRING")'
  78.       if QUERY_STRING = "" or Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
  79.     Myself = PATH_INFO & "?"
  80.   else
  81.     Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
  82.   end if
  83.   dim taxis'排序的语句
  84.       taxis="order by Sequence asc"
  85.   dim i'用于循环的整数
  86.   dim rs,sql'sql语句
  87.   '获取记录总数
  88.   sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  89.   set rs=server.createobject("adodb.recordset")
  90.   rs.open sql,conn,0,1
  91.   idCount=rs("idCount")
  92.   '获取记录总数
  93.   if(idcount>0) then'如果记录总数=0,则不处理
  94.     if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
  95.   pagec=int(idcount/pages)'获取总页数
  96.     else
  97.       pagec=int(idcount/pages)+1'获取总页数
  98.     end if
  99. '获取本页需要用到的id============================================
  100.     '读取所有记录的id数值,因为只有id所以速度很快
  101.     sql="select id from ["& datafrom &"] " & datawhere & taxis
  102.     set rs=server.createobject("adodb.recordset")
  103.     rs.open sql,conn,1,1
  104.     rs.pagesize = pages '每页显示记录数
  105.     if page < 1 then page = 1
  106.     if page > pagec then page = pagec
  107.     if pagec > 0 then rs.absolutepage = page  
  108.     for i=1 to rs.pagesize
  109.   if rs.eof then exit for  
  110.   if(i=1)then
  111.     sqlid=rs("id")
  112.   else
  113.     sqlid=sqlid &","&rs("id")
  114.   end if
  115.   rs.movenext
  116.     next
  117.   '获取本页需要用到的id结束============================================
  118.   end if
  119. '-----------------------------------------------------------
  120. '-----------------------------------------------------------
  121.   if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
  122.     '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
  123.     sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
  124.     set rs=server.createobject("adodb.recordset")
  125.     rs.open sql,conn,0,1
  126.     while(not rs.eof)'填充数据到表格
  127.   Response.Write "<tr bgcolor='#eafefe' onMouseOver = ""this.style.backgroundColor = '#FFFFFF'"" onMouseOut = ""this.style.backgroundColor = ''"" style='cursor:hand'>" & vbCrLf
  128.       Response.Write "<td nowrap>"&rs("ID")&"</td>" & vbCrLf
  129.         if rs("ViewFlagCh") then
  130.         Response.Write "<td nowrap><font color='green'>√</font></td>" & vbCrLf
  131.       else
  132.         Response.Write "<td nowrap><font color='red'>×</font></td>" & vbCrLf
  133.   end if
  134.       Response.Write "<td nowrap>"&rs("NavNameCh")&"</td>" & vbCrLf
  135.   if StrLen(rs("NavUrl"))>49 then
  136.         Response.Write "<td title="&rs("NavUrl")&" nowrap>"&StrLeft(rs("NavUrl"),46)&"</td>" & vbCrLf
  137.       else
  138.         Response.Write "<td title="&rs("NavUrl")&" nowrap>"&rs("NavUrl")&"</td>" & vbCrLf
  139.       end if
  140.       if rs("OutFlag") then
  141.         Response.Write "<td nowrap><font color='red'>外链</font></td>" & vbCrLf
  142.       else
  143.         Response.Write "<td nowrap>内链</td>" & vbCrLf
  144.   end if
  145.       Response.Write "<td nowrap><font color='green'>"&rs("Sequence")&"</font></td>" & vbCrLf
  146.       Response.Write "<td nowrap>"&rs("AddTime")&"</td>" & vbCrLf
  147.       Response.Write "<td width='60' nowrap><a href='NavigationEdit.asp?Result=Modify&ID="&rs("ID")&"' onClick='changeAdminFlag(""修改导航栏目"")'><font color='#330099'>修改</font></a>.<a href='NavigationList.asp?Result=ModifySequence&ID="&rs("ID")&"' onClick='changeAdminFlag(""排序导航栏目"")'><font color='#330099'>排序</font></a></td>" & vbCrLf
  148.     Response.Write "<td width='14' nowrap><input name='selectID' type='checkbox' value='"&rs("ID")&"' style='HEIGHT: 13px;WIDTH: 13px;'></td>" & vbCrLf
  149.       Response.Write "</tr>" & vbCrLf
  150.   rs.movenext
  151.     wend
  152.     Response.Write "<tr>" & vbCrLf
  153.     Response.Write "<td colspan='6' nowrap  bgcolor='#eafefe'>&nbsp;</td>" & vbCrLf
  154.     Response.Write "<td colspan='2' nowrap  bgcolor='#eafefe'><input name='submitDelSelect' type='button' class='button'  id='submitDelSelect' value='删除所选' onClick='ConfirmDel(""您真的要删除这些导航栏目吗?"");'></td>" & vbCrLf
  155.     Response.Write "</tr>" & vbCrLf
  156.   else
  157.     response.write "<tr><td height='50' align='center' colspan='8' nowrap  bgcolor='#eafefe'>暂无导航栏目</td></tr>"
  158.   end if
  159. '-----------------------------------------------------------
  160. '-----------------------------------------------------------
  161.   Response.Write "<tr>" & vbCrLf
  162.   Response.Write "<td colspan='8' nowrap  bgcolor='#bbe5e5'>" & vbCrLf
  163.   Response.Write "<table width='100%' border='0' align='center' cellpadding='0' cellspacing='0'>" & vbCrLf
  164.   Response.Write "<tr>" & vbCrLf
  165.   Response.Write "<td>共计:<font color='#ff6600'>"&idcount&"</font>条记录&nbsp;页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&"&nbsp;每页:<font color='#ff6600'>"&pages&"</font>条</td>" & vbCrLf
  166.   Response.Write "<td align='right'>" & vbCrLf
  167.   '设置分页页码开始===============================
  168.   pagenmin=page-pagenc '计算页码开始值
  169.   pagenmax=page+pagenc '计算页码结束值
  170.   if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  171.   if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a>&nbsp;") '如果页码大于1则显示(第一页)
  172.   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则显示(更前)
  173.   if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  174.   for i = pagenmin to pagenmax'循环输出页码
  175. if(i=page) then
  176.   response.write ("&nbsp;<font color='#ff6600'>"& i &"</font>&nbsp;")
  177. else
  178.   response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
  179. end if
  180.   next
  181.   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;") '如果页码结束值小于总页数则显示(更后)
  182.   if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a>&nbsp;") '如果页码小于总页数则显示(最后页)
  183.   '设置分页页码结束===============================
  184.   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
  185.   Response.Write "<input style='HEIGHT: 18px;WIDTH: 20px;' name='submitSkip' type='button' class='button' onClick='GoPage("""&Myself&""")' value='GO'>" & vbCrLf
  186.   Response.Write "</td>" & vbCrLf
  187.   Response.Write "</tr>" & vbCrLf
  188.   Response.Write "</table>" & vbCrLf
  189.   rs.close
  190.   set rs=nothing
  191.   Response.Write "</td>" & vbCrLf  
  192.   Response.Write "</tr>" & vbCrLf
  193. '-----------------------------------------------------------
  194. '-----------------------------------------------------------
  195. end function 
  196. %>
  197. <%
  198. sub ModifySequence()
  199.   dim rs,sql,ID,NavNameCh,Sequence
  200.   ID=request.QueryString("ID")
  201.   set rs = server.createobject("adodb.recordset")
  202.   sql="select * from CompanyCMS_Navigation where ID="& ID
  203.   rs.open sql,conn,1,1
  204.   NavNameCh=rs("NavNameCh")
  205.   Sequence=rs("Sequence")
  206.   rs.close
  207.   set rs=nothing
  208.   response.write "<br>"
  209.   response.write "<table width='100%' border='0' cellpadding='3' cellspacing='1' bgcolor='#6ab6b6'>"
  210.   response.write "<form action='NavigationList.asp?Result=SaveSequence' method='post' name='formSequence'>"
  211.   response.write "<tr>"
  212.   response.write "<td height='24' align='center' nowrap  bgcolor='#eafefe'>ID:<input name='ID' type='text' class='textfield'  style='WIDTH: 30;' value='"&ID&"' maxlength='4' readonly>&nbsp;导航栏目名称:<input name='NavNameCh' type='text' class='textfield' id='NavNameCh' style='WIDTH: 180;' value='"&NavNameCh&"' maxlength='36' readonly>&nbsp;排序号:<input name='Sequence' type='text' class='textfield' style='WIDTH: 60;' value='"&Sequence&"' maxlength='4'  onKeyDown='if(event.keyCode==13)event.returnValue=false' onchange=""if(/D/.test(this.value)){alert('只能在排序号内输入整数!');this.value='"&Sequence&"';}"">&nbsp;&nbsp;<input name='submitSequence' type='submit' class='button' value='保存' style='WIDTH: 60;' ></td>"
  213.   response.write "</tr>"
  214.   response.write "</form>"
  215.   response.write "</table>"
  216. end sub
  217. sub SaveSequence()
  218.   dim rs,sql
  219.   set rs = server.createobject("adodb.recordset")
  220.   sql="select * from CompanyCMS_Navigation where ID="& request.form("ID")
  221.   rs.open sql,conn,1,3
  222.   rs("Sequence")=request.form("Sequence")
  223.   rs.update
  224.   rs.close
  225.   set rs=nothing
  226.   response.redirect "NavigationList.asp"
  227. end sub
  228. %>