📄 search.asp
字号:
<!--#include file="top.asp"-->
<div align="center">
<center>
<table width="500" border="0" cellpadding="0" cellspacing="0" style="margin-bottom: 6; border-collapse:collapse" bordercolor="#111111">
<tr>
<td width="99%" align="center" bgcolor="#DBC2B0" height="25"><b>Search Results</b></td>
</tr>
<tr>
<td height="100" colspan="2" bgcolor="#F5EFE7"> <div align="center"></div>
<table border="0" width="300" cellspacing="0" cellpadding="0" height="5" align="center">
<%if request("sort_id")="" then%>
<%hw_name=request("hw_name")
sql="select * from hw where hw_name like '%"&hw_name&"%' order by hw_id DESC"
rs.open sql,conn,3,3
%>
<%else%>
<%
sort_id=request("sort_id")
hw_name=request("hw_name")
sql="select * from hw where sort_id="&sort_id&" and hw_name like '%"&hw_name&"%' order by hw_id DESC"
rs.open sql,conn,3,3
end if
if rs.eof then
%>
<tr>
<td width="380">Sorry ,the product you are searching is not found. </td>
</tr>
<%else%>
<tr>
<td> </td>
</tr>
<%do while not rs.eof %>
<tr>
<td><a href="views.asp?hw_id=<%=rs("hw_id")%>"> <b class="dz1">
<%
name=rs("hw_name")
name=replace(name,hw_name,""&hw_name&"")
response.write name
%>
</b> </a></td>
</tr>
<%rs.movenext
loop
end if
rs.close
%>
</table>
<br> <table width="100%" height="25" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="middle"><div align="center"><img src="img/seperator.gif" width="359" height="1"></div></td>
</tr>
</table>
<br> </td>
</tr>
</table>
</center>
</div>
<!--#include file="copy.asp"-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -