📄 ru_query.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="inc/const.asp"-->
<%
dim totalPut
dim CurrentPage
dim TotalPages
dim i,j
dim keyword
dim sql
dim rs
dim founderr
dim errmsg
dim findword
founderr=false
keyword=request("keyword")
if keyword="" then
errmsg=errmsg+"<br>"+"请输入查询条件。"
founderr=true
else
keyword=replace(replace(replace(replace(keyword,"'","‘"),"<","<"),">",">")," "," ")
if request("action")="title" then
findword="showname like '%"&keyword&"%' "
else
findword="note like '%"&keyword&"%' "
end if
end if
if not isempty(request("page")) then
currentPage=cint(request("page"))
else
currentPage=1
end if
set rs=server.createobject("adodb.recordset")
dim classid,Nclassid
dim classname,Nclassname
if request("classid")="" then
classid=""
classname="所有软件"
' classid="classid=1 and "
' sql="select class from Dclass where classid=1"
' rs.open sql,conn,1,1
' classname=rs("class")
' rs.close
else
classid="classid="&cstr(request("classid"))&" and "
sql="select class from Dclass where classid="&cstr(request("classid"))
rs.open sql,conn,1,1
classname=rs("class")
rs.close
end if
if request("Nclassid")="" then
Nclassid=""
Nclassname="所有软件"
else
Nclassid=" Nclassid="&cstr(request("Nclassid"))&" and "
sql="select Nclass from DNclass where Nclassid="&cstr(request("Nclassid"))
rs.open sql,conn,1,1
Nclassname=rs("Nclass")
rs.close
end if
%>
<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft FrontPage 4.0">
<meta HTTP-EQUIV="Content-Type" content="text/html; charset=gb2312">
<meta name="keywords" content="软件icq,http://www.softicq.com">
<link href="style.css" rel=stylesheet>
<title>搜索结果|http://www.softicq.com</title>
</head>
<body bgColor=#183ead leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
<table border="0" align=center width="763" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" bgcolor=#CCCCFF height="33" style="border-bottom-style: solid;border-color:#183ead;border-width:1px">
<TABLE bgColor=#CCCCFF border=0 cellPadding=1 cellSpacing=0 width="100%">
<TR>
<TD width=100% align=center>
<%
sql="select class,classid from Dclass"
rs.open sql,conn,1,1
do while not rs.eof
%>
| <a href="index.asp?classid=<%=rs("classid")%>"><%=rs("class")%></a> |
<%
rs.movenext
loop
rs.close
%>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="761" colspan="5"> </td>
</tr>
</table>
<div align="center">
<center>
<table border="0" width=763 align=center cellspacing="0" cellpadding="1" background="../images/bg_flower.gif" bgcolor="#FFFFFF">
<tr>
<td valign="top" width=763 align=center>
<%
response.write "查询条件:<font color=red>"&keyword&"</font>"
response.write "在"&classname&"的"&Nclassname&"中"
%>
<%
if request("Nclassid")="" then
sql="select id,showname,note,hits,dateandtime,hot,size,system,orders from download where "&classid&" "&findword&" "
sql=sql&" order by id desc"
else
sql="select id,showname,note,hits,dateandtime,hot,size,system,orders from download where "&classid&" "&Nclassid&" "&findword&" "
sql=sql&" order by id desc"
end if
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write "<p align='center'>没有或没有找到任何程序</p>"
else
totalPut=rs.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 totalput,MaxPerPage,"ru_query.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showContent
showpage totalput,MaxPerPage,"ru_query.asp"
else
currentPage=1
showContent
showpage totalput,MaxPerPage,"ru_query.asp"
end if
end if
rs.close
end if
sub showContent
dim i
i=0
%> <center><div align=center>
<table border="0" width="600" cellspacing="0" cellpadding="0" align=center>
<tr>
<td width="41%" bgcolor="#CCCCFF" height=22>软件名称和简介</td>
<td width="11%" bgcolor="#CCCCFF" align="center">推荐</td>
<td width="20%" bgcolor="#CCCCFF" align="center">更新日期</td>
<td width="14%" bgcolor="#CCCCFF" align="center">下载次数</td>
<td width="14%" bgcolor="#CCCCFF" align="center">文件大小</td>
</tr>
<%do while not rs.eof%>
<tr>
<td width="100%" colspan="5" height=22><IMG SRC="CLICK.GIF"><a href="list.asp?id=<%=rs("id")%>"><%=replace(rs("showname"),""&keyword&"","<font color=red>"&keyword&"</font>")%></a></td>
</tr>
<tr>
<td width="41%" height=22> <%if len(rs("note"))>18 then%><%=left(rs("note"),18)%>……<%else%><%=rs("note")%><%end if%></td>
<td width="11%" align=center><%if rs("hot")>3 then%><font color=red>推荐</font><%end if%></td>
<td width="20%" align=center><%=rs("dateandtime")%></td>
<td width="14%" align=center><%=rs("hits")%></td>
<td width="14%" align=center><%=rs("size")%></td>
</tr>
<tr>
<td width="100%" colspan="5" height=22>运行环境:<%=rs("system")%> 授权方式:<%=rs("orders")%></td>
</tr>
<tr>
<td background=../images/bg02.gif height=1 colspan="5" width=85%>
</td>
</tr>
<%
i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
</center></div>
<%
end sub
function showpage(totalnumber,maxperpage,filename)
dim n
if totalnumber mod maxperpage=0 then
n= totalnumber \ maxperpage
else
n= totalnumber \ maxperpage+1
end if
response.write "<form method=Post action="&filename&"?classid="&request("classid")&"&Nclassid="&request("Nclassid")&"&action="&request("action")&"&keyword="&keyword&">"
response.write "<p align='right'><font color='red'>"&Nclassname&"</font>"
if CurrentPage<2 then
response.write ""&totalnumber&"个 首页 上一页 "
else
response.write ""&totalnumber&"个 <a href="&filename&"?page=1&classid="&request("classid")&"&Nclassid="&request("Nclassid")&"&action="&request("action")&"&keyword="&keyword&">首页</a> "
response.write "<a href="&filename&"?page="&CurrentPage-1&"&classid="&request("classid")&"&Nclassid="&request("Nclassid")&"&action="&request("action")&"&keyword="&keyword&">上一页</a> "
end if
if n-currentpage<1 then
response.write "下一页 尾页"
else
response.write "<a href="&filename&"?page="&(CurrentPage+1)&"&classid="&request("classid")&"&Nclassid="&request("Nclassid")&"&action="&request("action")&"&keyword="&keyword&">"
response.write "下一页</a> <a href="&filename&"?page="&n&"&classid="&request("classid")&"&Nclassid="&request("Nclassid")&"&action="&request("action")&"&keyword="&keyword&">尾页</a>"
end if
response.write " 页次:<strong><font color=red>"&CurrentPage&"</font>/"&n&"</strong>页 "
response.write " <b>"&maxperpage&"</b>个软件/页 "
%>
转到:<select name='page' size='1' style='background-color:#CCCCFF' onchange='javascript:submit()'>
<%for i = 1 to n%>
<option value='<%=i%>' <%if cint(Page)=cint(i) then%> selected <%end if%>>第<%=i%>页</option>
<%next%>
</select>
</p></form>
<%
end function
%>
<p align=center><!--#include file=query.asp-->
<%
set rs=nothing
conn.close
set conn=nothing
%>
</td>
</tr>
</table>
</div>
<table border="0" width="763" align=center bgcolor="#FFFFFF" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
</td>
</tr>
<tr>
<td background=../images/bg02.gif height=1>
</td>
</tr>
<tr>
<td width="100%">
<!--#include file="myads.asp"--></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -