📄 ad_softmanage.asp
字号:
case "SoftIntro"
sql=sql & " and S.SoftIntro like '%" & keyword & "%' "
case "Author"
sql=sql & " and S.Author like '%" & keyword & "%' "
case "Editor"
sql=sql & " and S.Editor like '%" & keyword & "%' "
case else
sql=sql & " and S.SoftName like '%" & keyword & "%' "
end select
end if
end if
sql=sql & " order by S.SoftID desc"
'response.write sql
'response.end
Set rsSoftList= Server.CreateObject("ADODB.Recordset")
rsSoftList.open sql,conn,1,1
if rsSoftList.eof and rsSoftList.bof then
totalPut=0
if Child=0 then
response.write "<p align='center'><br>没有任何软件!<br></p>"
else
response.write "<p align='center'><br>此栏目的下一级子栏目中没有任何软件!<br></p>"
end if
else
totalPut=rsSoftList.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if
if currentPage=1 then
showContent
showpage strFileName,totalput,MaxPerPage,true,true,"个软件"
else
if (currentPage-1)*MaxPerPage<totalPut then
rsSoftList.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rsSoftList.bookmark
showContent
showpage strFileName,totalput,MaxPerPage,true,true,"个软件"
else
currentPage=1
showContent
showpage strFileName,totalput,MaxPerPage,true,true,"个软件"
end if
end if
end if
rsSoftList.close
set rsSoftList=nothing
sub showContent
dim SoftNum
SoftNum=0
%>
<table width='100%' border="0" cellpadding="0" cellspacing="0"><tr>
<form name="myform" method="Post" action="ad_SoftDel.asp" onsubmit="return ConfirmDel();">
<td><table class="border" border="0" cellspacing="1" width="100%" cellpadding="0">
<tr class="title" height="22">
<td height="22" width="30" align="center"><strong>选中</strong></td>
<td width="25" align="center" height="22"><strong>ID</strong></td>
<td align="center" ><strong>软件名称及版本</strong></td>
<td width="60" align="center" ><strong>软件大小</strong></td>
<td width="60" align="center" ><strong>下载次数</strong></td>
<td width="60" align="center" ><strong>软件属性</strong></td>
<td width="40" align="center" ><strong>已审核</strong></td>
<td width="180" align="center" ><strong>操作</strong></td>
</tr>
<%do while not rsSoftList.eof%>
<tr class="tdbg" onmouseout="this.style.backgroundColor=''" onmouseover="this.style.backgroundColor='#BFDFFF'">
<td width="30" align="center"><input name='SoftID' type='checkbox' onclick="unselectall()" id="SoftID" value='<%=cstr(rsSoftList("SoftID"))%>'></td>
<td width="25" align="center"><%=rsSoftList("Softid")%></td>
<td> <%
if rsSoftList("ClassID")<>ClassID then
response.write "<a href='" & FileName & "?ClassID=" & rsSoftList("ClassID") & "'>[" & rsSoftList("ClassName") & "]</a> "
end if
response.write "<a href='ad_SoftShow.asp?SoftID=" & rsSoftList("SoftID") & "'"
response.write " title='软件名称:" & rsSoftList("SoftName") & vbcrlf & "软件版本:" & rsSoftList("SoftVersion") & vbcrlf & "软件作者:" & rsSoftList("Author") & vbcrlf & "更新时间:" & rsSoftList("UpdateTime") & vbcrlf
response.write "下载次数:" & rsSoftList("Hits") & vbcrlf & "关 键 字:" & mid(rsSoftList("Keyword"),2,len(rsSoftList("Keyword"))-2) & vbcrlf & "推荐等级:"
if rsSoftList("Stars")=0 then
response.write "无"
else
response.write string(rsSoftList("Stars"),"★")
end if
response.write vbcrlf & "下载等级:"
if rsSoftList("SoftLevel")=9999 then
response.write "游客"
elseif rsSoftList("SoftLevel")=999 then
response.write "注册用户"
elseif rsSoftList("SoftLevel")=99 then
response.write "收费用户"
elseif rsSoftList("SoftLevel")=9 then
response.write "VIP用户"
elseif rsSoftList("SoftLevel")=5 then
response.write "管理员"
end if
response.write vbcrlf & "阅读点数:" & rsSoftList("SoftPoint")
response.write "'>" & rsSoftList("SoftName") & " " & rsSoftList("SoftVersion") & "</a>"
%></td>
<td width="60" align="center"><%=rsSoftList("SoftSize") & " K"%></td>
<td width="60" align="center"><%= rsSoftList("Hits") %></td>
<td width="60" align="center"> <%
if rsSoftList("OnTop")=true then
response.Write "<font color=blue>顶</font> "
else
response.write " "
end if
if rsSoftList("Hits")>=HitsOfHot then
response.write "<font color=red>热</a> "
else
response.write " "
end if
if rsSoftList("Elite")=true then
response.write "<font color=green>荐</a>"
else
response.write " "
end if
%> </td>
<td width="40" align="center"> <%
if rsSoftList("Passed")=true then
response.write "是"
else
response.write "否"
end if%></td>
<td width="180" align="center"> <%
if AdminPurview=1 or AdminPurview_Soft<=2 or PurviewChecked=true or AdminName=rsSoftList("Editor") then
response.write "<a href='ad_SoftModify.asp?SoftID=" & rsSoftList("Softid") &"'>修改</a> "
response.write "<a href='ad_SoftDel.asp?SoftID=" & rsSoftList("SoftID") & "&Action=Del' onclick='return ConfirmDel();'>删除</a> "
end if
if AdminPurview=1 or AdminPurview_Soft<=2 then
response.write "<a href='ad_SoftMove.asp?SoftID=" & rsSoftList("SoftID") & "'>移动</a> "
end if
if AdminPurview=1 or AdminPurview_Soft<=2 or PurviewChecked=true then
if rsSoftList("OnTop")=False then
response.write "<a href='ad_SoftProperty.asp?SoftID=" & rsSoftList("SoftID") & "&Action=SetOnTop'>固顶</a> "
else
response.write "<a href='ad_SoftProperty.asp?SoftID=" & rsSoftList("SoftID") & "&Action=CancelOnTop'>解固</a> "
end if
if rsSoftList("Elite")=False then
response.write "<a href='ad_SoftProperty.asp?SoftID=" & rsSoftList("SoftID") & "&Action=SetElite'>设为推荐</a>"
else
response.write "<a href='ad_SoftProperty.asp?SoftID=" & rsSoftList("SoftID") & "&Action=CancelElite'>取消推荐</a>"
end if
end if
%></td>
</tr>
<%
SoftNum=SoftNum+1
if SoftNum>=MaxPerPage then exit do
rsSoftList.movenext
loop
%>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="250" height="30"><input name="chkAll" type="checkbox" id="chkAll" onclick=CheckAll(this.form) value="checkbox">
选中本页显示的所有软件 </td>
<td><input name="submit" type='submit' value='删除选定的软件' onClick="document.myform.Action.value='Del'" <%if PurviewChecked=False and AdminPurview=2 and AdminPurview_Soft>=3 then response.write "disabled"%>>
<input name="Action" type="hidden" id="Action" value="Del">
<%
if AdminPurview=1 or AdminPurview_Soft<=2 then
%>
<input type="submit" name="Submit" value="将选定的软件移动到" onClick="document.myform.Action.value='MoveToClass'">
<select name="TargetClassID"><%call Admin_ShowClass_Option(3,ClassID)%></select>
<%end if%>
</td>
</tr>
</table>
</td>
</form></tr></table>
<%
end sub
if ClassID>0 and Child>0 then
%>
<br>
<table width="100%" height="5" border="0" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class='border'>
<tr height="20" class='tdbg'>
<td width='150' align="right">【<%response.write "<a href='" & strFileName & "'>" & ClassName & "</a>"%>】子栏目导航:</td>
<td><%call Admin_ShowChild()%></td></tr>
</table>
<%
end if
%>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="border">
<tr class="tdbg">
<td width="80" align="right"><strong>软件搜索:</strong></td>
<td>
<%call Admin_ShowSearchForm(FileName,2)%>
</td>
</tr>
</table>
</body>
</html>
<%
call CloseConn()
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -