?? aboutlist.asp
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'┌┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┐
'┊ ┊
'┊ 互連在線企業網站管理系統(W2006) ┊
'┊ ┊
' 版權所有 csys.com.cn
'
' 程序制作 互連在線工作室
'
' 相關網址 [產品介紹]http://www.csys.com.cn
'
' 演示網址 http://www.webchina.com.cn
'┊ ┊
'└┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┘
%>
<% Option Explicit %>
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
<META NAME="copyright" CONTENT="Copyright 2004-2008 - csys.com.cn-STUDIO" />
<META NAME="Author" CONTENT="互連在線網絡技術工作室,www.csys.com.cn" />
<META NAME="Keywords" CONTENT="" />
<META NAME="Description" CONTENT="" />
<TITLE>管理員列表</TITLE>
<link rel="stylesheet" href="Images/CssAdmin.css">
<script language="javascript" src="../Script/Admin.js"></script>
</HEAD>
<!--#include file="../Include/Const.asp" -->
<!--#include file="../Include/ConnSiteData.asp" -->
<!--#include file="CheckAdmin.asp"-->
<%
if Instr(session("AdminPurview"),"|11,")=0 then
response.write ("<font color='red')>你不具有該管理模塊的操作權限,請返回!</font>")
response.end
end if
'========判斷是否具有管理權限
%>
<BODY>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#6298E1">
<tr>
<td height="24" nowrap><font color="#FFFFFF"><img src="Images/Explain.gif" width="18" height="18" border="0" align="absmiddle"> <strong>企業信息:添加,修改介紹企業相關的內容</strong></font></td>
</tr>
<tr>
<td height="24" align="center" nowrap bgcolor="#EBF2F9"><a href="AboutEdit.asp?Result=Add" onClick='changeAdminFlag("添加企業信息")'>添加企業信息</a><font color="#0000FF"> | </font><a href="AboutList.asp" onClick='changeAdminFlag("企業信息")'>查看企業信息</a></td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#6298E1">
<form action="DelContent.asp?Result=About" method="post" name="formDel" >
<tr>
<td width="18" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>ID</strong></font></td>
<td width="28" height="24" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">發布</font></strong></td>
<td nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>信息名稱</strong></font></td>
<td width="88" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>查看組別</strong></font></td>
<td width="52" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>權限方式</strong></font></td>
<td width="52" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>顯示順序</strong></font></td>
<td width="118" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF"><strong>發布時間</strong></font></strong></td>
<td width="52" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>查看次數</strong></font></td>
<td width="76" colspan="2" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">操作</font></strong>
<input onClick="CheckAll(this.form)" name="buttonAllSelect" type="button" class="button" id="submitAllSearch" value="全" style="HEIGHT: 18px;WIDTH: 16px;">
<input onClick="CheckOthers(this.form)" name="buttonOtherSelect" type="button" class="button" id="submitOtherSelect" value="反" style="HEIGHT: 18px;WIDTH: 16px;"></td>
</tr>
<% AboutList() %>
</form>
</table>
<% if request.QueryString("Result")="ModifySequence" then call ModifySequence() %>
<% if request.QueryString("Result")="SaveSequence" then call SaveSequence() %>
</body>
</html>
<%
'-----------------------------------------------------------
function AboutList()
dim idCount'記錄總數
dim pages'每頁條數
pages=20
dim pagec'總頁數
dim page'頁碼
page=clng(request("Page"))
dim pagenc '每頁顯示的分頁頁碼數量=pagenc*2+1
pagenc=2
dim pagenmax '每頁顯示的分頁的最大頁碼
dim pagenmin '每頁顯示的分頁的最小頁碼
dim datafrom'數據表名
datafrom="Csys_About"
dim datawhere'數據條件
datawhere=""
dim sqlid'本頁需要用到的id
dim Myself,PATH_INFO,QUERY_STRING'本頁地址和參數
PATH_INFO = request.servervariables("PATH_INFO")
QUERY_STRING = request.ServerVariables("QUERY_STRING")'
if QUERY_STRING = "" or Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
Myself = PATH_INFO & "?"
else
Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
end if
dim taxis'排序的語句
taxis="order by Sequence asc"
dim i'用于循環的整數
dim rs,sql'sql語句
'獲取記錄總數
sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,0,1
idCount=rs("idCount")
'獲取記錄總數
if(idcount>0) then'如果記錄總數=0,則不處理
if(idcount mod pages=0)then'如果記錄總數除以每頁條數有余數,則=記錄總數/每頁條數+1
pagec=int(idcount/pages)'獲取總頁數
else
pagec=int(idcount/pages)+1'獲取總頁數
end if
'獲取本頁需要用到的id============================================
'讀取所有記錄的id數值,因為只有id所以速度很快
sql="select id from ["& datafrom &"] " & datawhere & taxis
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
rs.pagesize = pages '每頁顯示記錄數
if page < 1 then page = 1
if page > pagec then page = pagec
if pagec > 0 then rs.absolutepage = page
for i=1 to rs.pagesize
if rs.eof then exit for
if(i=1)then
sqlid=rs("id")
else
sqlid=sqlid &","&rs("id")
end if
rs.movenext
next
'獲取本頁需要用到的id結束============================================
end if
'-----------------------------------------------------------
'-----------------------------------------------------------
if(idcount>0 and sqlid<>"") then'如果記錄總數=0,則不處理
'用in刷選本頁所語言的數據,僅讀取本頁所需的數據,所以速度快
sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,0,1
while(not rs.eof)'填充數據到表格
Response.Write "<tr bgcolor='#EBF2F9' onMouseOver = ""this.style.backgroundColor = '#FFFFFF'"" onMouseOut = ""this.style.backgroundColor = ''"" style='cursor:hand'>" & vbCrLf
Response.Write "<td nowrap>"&rs("ID")&"</td>" & vbCrLf
if rs("ViewFlag") then
Response.Write "<td nowrap><font color='blue'>√</font></td>" & vbCrLf
else
Response.Write "<td nowrap><font color='red'>×</font></td>" & vbCrLf
end if
Response.Write "<td nowrap>"&rs("AboutName")& vbCrLf
if rs("ChildFlag") then Response.Write "<font color='red'>分頁</font>" & vbCrLf
Response.Write "</td>"& vbCrLf
ViewGroupName(rs("GroupID"))
if rs("Exclusive")=">=" then
Response.Write "<td nowrap><font color='green'>隸屬</font></td>" & vbCrLf
else
Response.Write "<td nowrap><font color='red'>專屬</font></td>" & vbCrLf
end if
Response.Write "<td nowrap><font color='blue'>"&rs("Sequence")&"</font></td>" & vbCrLf
Response.Write "<td nowrap>"&rs("AddTime")&"</td>" & vbCrLf
Response.Write "<td nowrap>"&rs("ClickNumber")&"</td>" & vbCrLf
Response.Write "<td width='48' nowrap><a href='AboutEdit.asp?Result=Modify&ID="&rs("ID")&"' onClick='changeAdminFlag(""修改企業信息"")'><font color='#330099'>改</font></a>.<a href='AboutList.asp?Result=ModifySequence&ID="&rs("ID")&"' onClick='changeAdminFlag(""排序企業信息"")'><font color='#330099'>排序</font></a></td>" & vbCrLf
Response.Write "<td width='14' nowrap><input name='selectID' type='checkbox' value='"&rs("ID")&"' style='HEIGHT: 13px;WIDTH: 13px;'></td>" & vbCrLf
Response.Write "</tr>" & vbCrLf
rs.movenext
wend
Response.Write "<tr>" & vbCrLf
Response.Write "<td colspan='8' nowrap bgcolor='#EBF2F9'> </td>" & vbCrLf
Response.Write "<td colspan='2' nowrap bgcolor='#EBF2F9'><input name='submitDelSelect' type='button' class='button' id='submitDelSelect' value='刪除所選' onClick='ConfirmDel(""您真的要刪除這些企業信息嗎?"");'></td>" & vbCrLf
Response.Write "</tr>" & vbCrLf
else
response.write "<tr><td height='50' align='center' colspan='12' nowrap bgcolor='#EBF2F9'>暫無企業信息</td></tr>"
end if
'-----------------------------------------------------------
'-----------------------------------------------------------
Response.Write "<tr>" & vbCrLf
Response.Write "<td colspan='10' nowrap bgcolor='#D7E4F7'>" & vbCrLf
Response.Write "<table width='100%' border='0' align='center' cellpadding='0' cellspacing='0'>" & vbCrLf
Response.Write "<tr>" & vbCrLf
Response.Write "<td>共計:<font color='#ff6600'>"&idcount&"</font>條記錄 頁次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&" 每頁:<font color='#ff6600'>"&pages&"</font>條</td>" & vbCrLf
Response.Write "<td align='right'>" & vbCrLf
'設置分頁頁碼開始===============================
pagenmin=page-pagenc '計算頁碼開始值
pagenmax=page+pagenc '計算頁碼結束值
if(pagenmin<1) then pagenmin=1 '如果頁碼開始值小于1則=1
if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a> ") '如果頁碼大于1則顯示(第一頁)
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> ") '如果頁碼開始值大于1則顯示(更前)
if(pagenmax>pagec) then pagenmax=pagec '如果頁碼結束值大于總頁數,則=總頁數
for i = pagenmin to pagenmax'循環輸出頁碼
if(i=page) then
response.write (" <font color='#ff6600'>"& i &"</font> ")
else
response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
end if
next
if(pagenmax<pagec) then response.write (" <a href='"& myself &"Page="& page+(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>8</font></a> ") '如果頁碼結束值小于總頁數則顯示(更后)
if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a> ") '如果頁碼小于總頁數則顯示(最后頁)
'設置分頁頁碼結束===============================
Response.Write "跳到:第 <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&"'> 頁" & vbCrLf
Response.Write "<input style='HEIGHT: 18px;WIDTH: 20px;' name='submitSkip' type='button' class='button' onClick='GoPage("""&Myself&""")' value='GO'>" & vbCrLf
Response.Write "</td>" & vbCrLf
Response.Write "</tr>" & vbCrLf
Response.Write "</table>" & vbCrLf
rs.close
set rs=nothing
Response.Write "</td>" & vbCrLf
Response.Write "</tr>" & vbCrLf
'-----------------------------------------------------------
'-----------------------------------------------------------
end function
%>
<%
sub ViewGroupName(GruopID)
dim rs,sql
set rs = server.createobject("adodb.recordset")
sql="select GroupID,GroupName from Csys_MemGroup where GroupID='"&GruopID&"'"
rs.open sql,conn,1,1
if rs.bof and rs.eof then
response.write("<td nowrap>未設組別</td>")
else
response.write("<td nowrap>"&rs("GroupName")&"</td>")
end if
rs.close
set rs=nothing
end sub
%>
<%
sub ModifySequence()
dim rs,sql,ID,AboutName,Sequence
ID=request.QueryString("ID")
set rs = server.createobject("adodb.recordset")
sql="select * from Csys_About where ID="& ID
rs.open sql,conn,1,1
AboutName=rs("AboutName")
Sequence=rs("Sequence")
rs.close
set rs=nothing
response.write "<br>"
response.write "<table width='100%' border='0' cellpadding='3' cellspacing='1' bgcolor='#6298E1'>"
response.write "<form action='AboutList.asp?Result=SaveSequence' method='post' name='formSequence'>"
response.write "<tr>"
response.write "<td height='24' align='center' nowrap bgcolor='#EBF2F9'>ID:<input name='ID' type='text' class='textfield' style='WIDTH: 30;' value='"&ID&"' maxlength='4' readonly> 企業信息名稱:<input name='AboutName' type='text' class='textfield' id='AboutName' style='WIDTH: 180;' value='"&AboutName&"' maxlength='36' readonly> 排序號:<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&"';}""> <input name='submitSequence' type='submit' class='button' value='保存' style='WIDTH: 60;' ></td>"
response.write "</tr>"
response.write "</form>"
response.write "</table>"
end sub
sub SaveSequence()
dim rs,sql
set rs = server.createobject("adodb.recordset")
sql="select * from Csys_About where ID="& request.form("ID")
rs.open sql,conn,1,3
rs("Sequence")=request.form("Sequence")
rs.update
rs.close
set rs=nothing
response.redirect "AboutList.asp"
end sub
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -