📄 downlist.asp
字号:
<%@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 2008-2010 - GLGK.COM-STUDIO" />
<META NAME="Author" CONTENT="冠龙科技,www.glgk.com" />
<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"),"|52,")=0 then
response.write ("<font color='red')>你不具有该管理模块的操作权限,请返回!</font>")
response.end
end if
'========判断是否具有管理权限
%>
<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 "下载:列表 -> 检索 -> 添加时间[<font color='red'>"&StartDate&"至"&EndDate&"</font>],关键字[<font color='red'>"&Keyword&"</font>]"
else
if SortPath<>"" then
Response.Write "下载:列表 -> <a href='DownList.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>下载检索及分类查看:添加,修改,删除下载信息</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=Download">
<td nowrap> 下载检索:从
<script language=javascript>
var myDate=new dateSelector();
myDate.year--;
myDate.date;
myDate.inputName='start_date'; //注意这里设置输入框的name,同一页中日期输入框,不能出现重复的name。
myDate.display();
</script>
到
<script language=javascript>
myDate.year++;
myDate.inputName='end_date'; //注意这里设置输入框的name,同一页中的日期输入框,不能出现重复的name。
myDate.display();
</script>
关键字:<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="DownList.asp" onClick='changeAdminFlag("下载列表")'>全部下载</a><font color="#0000FF"> | </font><a href="DownSort.asp" onClick='changeAdminFlag("选择查看分类")'>其他类别下载</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=Download" method="post" name="formDel" >
<tr>
<td width="30" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>ID</strong></font></td>
<td width="12" height="24" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>中</strong></font></td>
<td width="12" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">英</font></strong></td>
<td nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>下载标题</strong>(指向显示所属类别)</font></td>
<td width="28" nowrap bgcolor="#8DB5E9"><font color="#FFFFFF"><strong>标记</strong></font></td>
<td width="76" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">查看组别</font></strong></td>
<td width="66" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">文件大小</font></strong></td>
<td width="118" nowrap bgcolor="#8DB5E9"><strong><font color="#FFFFFF">更新时间</font></strong></td>
<td width="52" 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>
<% NewsList() %>
</form>
</table>
</BODY>
</HTML>
<%
'-----------------------------------------------------------
function NewsList()
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="Download"
dim datawhere'数据条件
if Result="Search" then
datawhere="where ( DownNameCh like '%" & Keyword &_
"%') and AddTime >= #" & StartDate & " # and AddTime <= #" & EndDate & "#"
else
if SortPath<>"" then'是否查看的分类产品
datawhere="where Instr(SortPath,'"&SortPath&"')>0 "
else
datawhere=""
end if
end if
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'排序的语句 asc,desc
taxis="order by id desc "
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("ViewFlagCh") then
Response.Write "<td nowrap><font color='blue'>√</font></td>" & vbCrLf
else
Response.Write "<td nowrap><font color='red'>×</font></td>" & vbCrLf
end if
if rs("ViewFlagEn") then
Response.Write "<td nowrap><font color='blue'>√</font></td>" & vbCrLf
else
Response.Write "<td nowrap><font color='red'>×</font></td>" & vbCrLf
end if
if StrLen(rs("DownNameCh"))>36 then
Response.Write "<td nowrap title='类别: "&SortText(rs("SortID"))&" | "&rs("SortPath")&" 版本 :"&rs("Version")&"'>"&StrLeft(rs("DownNameCh"),33)&"</td>" & vbCrLf
else
Response.Write "<td nowrap title='类别: "&SortText(rs("SortID"))&" | "&rs("SortPath")&"'>"&rs("DownNameCh")&"</td>" & vbCrLf
end if
Response.Write "<td nowrap>" & vbCrLf
if rs("CommendFlag") then Response.Write "<font color='red'>荐</font>"
Response.Write "</td>"
if rs("Exclusive")=">=" then
Response.Write "<td nowrap>"&ViewGroupNameCh(rs("GroupID"))&" <font color='green'>隶</font></td>" & vbCrLf
else
Response.Write "<td nowrap>"&ViewGroupNameCh(rs("GroupID"))&" <font color='red'>专</font></td>" & vbCrLf
end if
Response.Write "<td nowrap>"&rs("FileSize")&"</td>" & vbCrLf
Response.Write "<td nowrap title='创建时间:"&rs("AddTime")&"'>"&rs("UpdateTime")&"</td>" & vbCrLf
Response.Write "<td nowrap>"&rs("ClickNumber")&"</td>" & vbCrLf
Response.Write "<td width='48' nowrap><a href='reg.asp' 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='9' 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='11' nowrap bgcolor='#EBF2F9'>暂无下载信息</td></tr>"
end if
'-----------------------------------------------------------
'-----------------------------------------------------------
Response.Write "<tr>" & vbCrLf
Response.Write "<td colspan='11' 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
'生成节点文字路径--------------------------
Function TextPath(ID)
Dim rs,sql
Set rs=server.CreateObject("adodb.recordset")
sql="Select * from DownSort where ID="&ID
rs.open sql,conn,1,1
TextPath=" -> <a href=DownList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&">"&rs("SortNameCh")&"</a>"
if rs("ParentID")<>0 then TextPath rs("ParentID")
response.write(TextPath)
End Function
%>
<%
'生成所属类别--------------------------
Function SortText(ID)
Dim rs,sql
Set rs=server.CreateObject("adodb.recordset")
sql="Select * from DownSort where ID="&ID
rs.open sql,conn,1,1
SortText=rs("SortNameCh")
rs.close
set rs=nothing
End Function
%>
<%
Function ViewGroupNameCh(GruopID)
dim rs,sql
set rs = server.createobject("adodb.recordset")
sql="select GroupID,GroupNameCh from MemGroup where GroupID='"&GruopID&"'"
rs.open sql,conn,1,1
if rs.bof and rs.eof then
ViewGroupNameCh="未设组别"
else
ViewGroupNameCh=rs("GroupNameCh")
end if
rs.close
set rs=nothing
end Function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -