?? productlistpl.asp
字號(hào):
?<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<% 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" />
<META NAME="Author" CONTENT="迅易人物評(píng)選系統(tǒng)" />
<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"),"|32,")=0 then
response.write ("<font color='red')>你不具有該管理模塊的操作權(quán)限,請(qǐng)返回!</font>")
response.end
end if
'========判斷是否具有管理權(quán)限
%>
<BODY>
<%
dim Result,StartDate,EndDate,Keyword,SortID,SortPath
Result=request.QueryString("Result")
StartDate=request.QueryString("StartDate")
EndDate=request.QueryString("EndDate")
Keyword=request.QueryString("Keyword")
SortID=request.QueryString("SortID")
SortPath=request.QueryString("SortPath")
function PlaceFlag()
if Result="Search" then
Response.Write "人物:列表 -> 檢索 -> 添加時(shí)間[<font color='red'>"&StartDate&"至"&EndDate&"</font>],關(guān)鍵字[<font color='red'>"&Keyword&"</font>]"
else
if SortPath<>"" then
Response.Write "人物:列表 -> <a href='ProductList.asp'>全部</a>"
TextPath(SortID)
else
Response.Write "人物:列表 -> 全部"
end if
end if
end function
%>
<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>人物檢索及分類(lèi)查看:添加,修改,刪除人物信息</strong></font></td>
</tr>
<tr>
<td height="36" align="center" nowrap bgcolor="#EBF2F9"><table width="100%" border="0" cellspacing="0">
<tr>
<form name="formSearch" method="post" action="Search.asp?Result=Productspl">
<td nowrap> 人物檢索:從
<script language=javascript>
var myDate=new dateSelector();
myDate.year--;
myDate.date;
myDate.inputName='start_date'; //注意這里設(shè)置輸入框的name,同一頁(yè)中日期輸入框,不能出現(xiàn)重復(fù)的name。
myDate.display();
</script>
到
<script language=javascript>
myDate.year++;
myDate.inputName='end_date'; //注意這里設(shè)置輸入框的name,同一頁(yè)中的日期輸入框,不能出現(xiàn)重復(fù)的name。
myDate.display();
</script>
關(guān)鍵字:<input name="Keyword" type="text" class="textfield" value="<%=Keyword%>" size="18">
<input name="submitSearch" type="submit" class="button" value="檢索">
</td>
</form>
<td align="right" nowrap>查看:<a href="ProductList.asp" onClick='changeAdminFlag("人物列表")'>全部人物</a><font color="#0000FF"> | </font><a href="ProductSort.asp" onClick='changeAdminFlag("選擇查看分類(lèi)")'>其他類(lèi)別人物</a></td>
</tr>
</table> </td>
</tr>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr>
<td height="30"><%PlaceFlag()%></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#6298E1">
<form action="DelContent.asp?Result=ProductsPl" method="post" name="formDel" >
<tr>
<td width="30" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>ID</strong></font></td>
<td width="90" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>人物編號(hào)</strong></font></td>
<td nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>人物評(píng)論</strong></font></td>
<td width="30" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>狀態(tài)</strong></font></td>
<td width="80" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">評(píng)論人</font></strong></td>
<td width="76" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">評(píng)論時(shí)間</font></strong></td>
<td width="120" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">審核</font></strong></td>
<td colspan="2" width="76" 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>
<% ProductsList() %>
</form>
</table>
</BODY>
</HTML>
<%
'-----------------------------------------------------------
function ProductsList()
dim idCount'記錄總數(shù)
dim pages'每頁(yè)條數(shù)
pages=20
dim pagec'總頁(yè)數(shù)
dim page'頁(yè)碼
page=clng(request("Page"))
dim pagenc'每頁(yè)顯示的分頁(yè)頁(yè)碼數(shù)量=pagenc*2+1
pagenc=2
dim pagenmax'每頁(yè)顯示的分頁(yè)的最大頁(yè)碼
dim pagenmin'每頁(yè)顯示的分頁(yè)的最小頁(yè)碼
dim datafrom'數(shù)據(jù)表名
datafrom="ameav_pl"
dim datawhere'數(shù)據(jù)條件
if Result="Search" then
datawhere="where ( nick like '%" & Keyword &_
"%') and addtime >= #" & StartDate & " # and addtime <= #" & EndDate & "#"
else
datawhere=""
end if
dim sqlid'本頁(yè)需要用到的id
dim Myself,PATH_INFO,QUERY_STRING'本頁(yè)地址和參數(shù)
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'排序的語(yǔ)句 asc,desc
taxis="order by id desc"
dim i'用于循環(huán)的整數(shù)
dim rs,sql'sql語(yǔ)句
'獲取記錄總數(shù)
sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,0,1
idCount=rs("idCount")
'獲取記錄總數(shù)
if(idcount>0) then'如果記錄總數(shù)=0,則不處理
if(idcount mod pages=0)then'如果記錄總數(shù)除以每頁(yè)條數(shù)有余數(shù),則=記錄總數(shù)/每頁(yè)條數(shù)+1
pagec=int(idcount/pages)'獲取總頁(yè)數(shù)
else
pagec=int(idcount/pages)+1'獲取總頁(yè)數(shù)
end if
'獲取本頁(yè)需要用到的id============================================
'讀取所有記錄的id數(shù)值,因?yàn)橹挥衖d所以速度很快
sql="select id from ["& datafrom &"] " & datawhere & taxis
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
rs.pagesize = pages '每頁(yè)顯示記錄數(shù)
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
'獲取本頁(yè)需要用到的id結(jié)束============================================
end if
'-----------------------------------------------------------
'-----------------------------------------------------------
if(idcount>0 and sqlid<>"") then'如果記錄總數(shù)=0,則不處理
'用in刷選本頁(yè)所語(yǔ)言的數(shù)據(jù),僅讀取本頁(yè)所需的數(shù)據(jù),所以速度快
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)'填充數(shù)據(jù)到表格
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
Response.Write "<td nowrap><a href='../html/ProductView.asp?ID="&rs("pid")&"' target='_blank'>查看人物-"&rs("pid")&"</a></td>" & vbCrLf
if StrLen((rs("info")))>33 then
Response.Write "<td nowrap>"&StrLeft(rs("info"),30)&"</td>" & vbCrLf
else
Response.Write "<td nowrap >"&rs("info")&"</td>" & vbCrLf
end if
Response.Write "<td nowrap><font color='blue'>" & vbCrLf
Response.Write "<font color='red'>√</font>"
Response.Write "</td>"
Response.Write "<td nowrap>"&rs("nick")&"</td>" & vbCrLf
Response.Write "<td nowrap>"&rs("addtime")&"</td>" & vbCrLf
Response.Write "<td nowrap>" & vbCrLf
if rs("sh")=1 then
Response.Write "<a href='plSave.asp?Action=pl&plcheck=1&ID="&rs("ID")&"' onClick='changeAdminFlag(""取消審核"")'><font color='#336699'>審核通過(guò)</font></a>" & vbCrLf
else
Response.Write "<a href='plSave.asp?Action=pl&plcheck=0&ID="&rs("ID")&"' onClick='changeAdminFlag(""審核通過(guò)"")'><font color='red'>沒(méi)有審核</font></a>" & vbCrLf
end if
Response.write"</td>" & vbCrLf
Response.Write "<td width='40' nowrap></td>" & vbCrLf
Response.Write "<td width='22' 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='7' 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(""您真的要?jiǎng)h除這些會(huì)員嗎?"");'></td>" & vbCrLf
Response.Write "</tr>" & vbCrLf
else
response.write "<tr><td height='50' align='center' colspan='9' nowrap bgcolor='#EBF2F9'>暫無(wú)人物信息</td></tr>"
end if
'-----------------------------------------------------------
'-----------------------------------------------------------
Response.Write "<tr>" & vbCrLf
Response.Write "<td colspan='9' 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>共計(jì):<font color='#ff6600'>"&idcount&"</font>條記錄 頁(yè)次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&" 每頁(yè):<font color='#ff6600'>"&pages&"</font>條</td>" & vbCrLf
Response.Write "<td align='right'>" & vbCrLf
'設(shè)置分頁(yè)頁(yè)碼開(kāi)始===============================
pagenmin=page-pagenc '計(jì)算頁(yè)碼開(kāi)始值
pagenmax=page+pagenc '計(jì)算頁(yè)碼結(jié)束值
if(pagenmin<1) then pagenmin=1 '如果頁(yè)碼開(kāi)始值小于1則=1
if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a> ") '如果頁(yè)碼大于1則顯示(第一頁(yè))
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> ") '如果頁(yè)碼開(kāi)始值大于1則顯示(更前)
if(pagenmax>pagec) then pagenmax=pagec '如果頁(yè)碼結(jié)束值大于總頁(yè)數(shù),則=總頁(yè)數(shù)
for i = pagenmin to pagenmax'循環(huán)輸出頁(yè)碼
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> ") '如果頁(yè)碼結(jié)束值小于總頁(yè)數(shù)則顯示(更后)
if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a> ") '如果頁(yè)碼小于總頁(yè)數(shù)則顯示(最后頁(yè))
'設(shè)置分頁(yè)頁(yè)碼結(jié)束===============================
Response.Write "跳到:第 <input name='SkipPage' onKeyDown='if(event.keyCode==13)event.returnValue=false' onchange=""if(/\D/.test(this.value)){alert('只能在跳轉(zhuǎn)目標(biāo)頁(yè)框內(nèi)輸入整數(shù)!');this.value='"&Page&"';}"" style='HEIGHT: 18px;WIDTH: 40px;' type='text' class='textfield' value='"&Page&"'> 頁(yè)" & 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
%>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -