📄 pro_type.asp
字号:
<%
strsql="select * from pro_type"
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open strsql, conn, 1, 1
totalRecs = rs.RecordCount
%>
<table width="100%" height="86" border="0" cellpadding="0" cellspacing="0">
<% while not rs.eof %>
<tr>
<td width="15%" height="22"><div align="center"></div></td>
<td width="85%" height="22"> <div align="left"><strong><font color="#006633"> </strong><img src="image/pro/path_cross.gif" width="14" height="9">
<a href="product.asp?pro_type=<%=rs("id")%>"><font color="#006633"><%= rs("type_name") %></font></a></div></td>
</tr>
<tr>
<td height="1"></td>
<td height="1" bgcolor="#CCCCCC"></td>
</tr>
<% rs.movenext
wend
rs.close
set rs=nothing
%>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -