📄 detail.asp
字号:
<!--#include file="conn.asp"-->
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<%
dim sname,ssize
hw_id = request("hw_id")
set rs = server.createobject("adodb.recordset")
sql="select * from hw where hw_id="&hw_id
rs.open sql,conn,1,1
if not rs.EOF then
sort_name = rs("sort_name")
nsort_name = rs("nsort_name")
hw_content = rs("hw_content")
price = rs("hw_cash")
size = rs("hw_name")
pic = rs("hw_pic2")
adddate = rs("hw_date")
end if
rs.close
%>
<body leftmargin="0" topmargin="0" bgcolor="#ECECEC">
<table width="100%" height="100%">
<tr valign="top">
<td width="30px" height="100%" style="color: white;">
</td>
<td>
<table align="left" width="642" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="20px">
</td>
</tr>
<tr>
<td valign="middle" height="80px">
<img src="images/logo1.jpg" /><strong>BRAND:<%=sort_name%></strong></td>
</tr>
<tr>
<td background="images/detailback.jpg" width="648" height="335">
<table width="100%" height="100%">
<tr>
<td width="20px">
</td>
<td>
<img src=pic/<%=pic%> class="bigpicture" width="300px" height="300px" /></td>
<td width="20px">
</td>
<td width="300">
<table>
<tr>
<td width="250px" height="30px" class="listtitle">
BRAND:<%=sort_name %></td>
</tr>
<tr>
<td height="30px" class="list">
STYLE:<%=nsort_name %></td>
</tr>
<tr>
<td height="30px" class="list">
SIZE:<%=size%></td>
</tr>
<tr>
<td height="30px" class="list">
PRISE:$<%=price %></td>
</tr>
<tr>
<td height="30px" class="list">
ADDINDATE:<%=adddate %></td>
</tr><tr><td height=30px></td></tr>
<tr><td><a href="contactus.asp" ><img class=btn src="images/btnorder.gif" /></a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="80px">
<img src="images/logdetail.jpg" /></td>
</tr>
<tr>
<td>
<%=hw_content %>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -