📄 xh_look.asp
字号:
<!--#include file="conn.asp"-->
<%
xhbooktype=request.querystring("booktype")
set rs=server.createobject("adodb.recordset")
sql="select * from xhbook where booktype='"&xhbooktype&"' order by id desc"
rs.open sql,db,1,3
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
table {
font-size: 9pt;
text-decoration: none;
border: 1px solid #000000;
}
-->
</style>
</head>
<body>
<table width="88%" border="0" align="center" cellspacing="0">
<tr align="center" valign="middle" bgcolor="#006699">
<td width="30%" height="25"><font color="#FFFFFF">书籍名称</font></td>
<td width="17%"><font color="#FFFFFF">分类</font></td>
<td width="24%"><font color="#FFFFFF">出版社</font></td>
<td width="9%"><font color="#FFFFFF">价格</font></td>
<td width="20%"><font color="#FFFFFF">出版日期</font></td>
</tr>
<%do while not rs.eof%>
<tr align="center">
<td height="26"><%=rs("bookname")%></td>
<td height="26"><%=rs("booktype")%></td>
<td height="26"><%=rs("publishing")%></td>
<td height="26"><font color="#FF0000"><%=rs("bookmoney")%>元</font></td>
<td height="26"><%=rs("xhdate")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
<p align="center"><!--#include file="xh_wei.asp"--></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -