📄 b2b_buyzk.asp
字号:
<TABLE align="center" cellSpacing=0 cellPadding=0 width=98% border=0>
<TBODY>
<TR>
<TD vAlign=top>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<%
i=0
rs.open "select top 11 id,discount,name from product where stock >= 0 order by discount asc",conn,1,1
if rs.eof and rs.bof then
rs.close
response.write "<br>目前没有特价商品"
end if
do while not rs.eof
i=i+1
%>
<TR>
<TD height="20">
<%
if len(trim(rs("name")))>10 then
response.write " ·<a href=b2b_cpinfo.asp?id="&rs("id")&" target=_blank>"&left(trim(rs("name")),10)&"...</a> <font color=#FF6600>"&rs("discount")*100&"%</font><br>"
else
response.write " ·<a href=b2b_cpinfo.asp?id="&rs("id")&" target=_blank>"&trim(rs("name"))&"</a> <font color=#FF6600>"&rs("discount")*100&"%</font><br>"
end if
%>
</TD>
</TR>
<%
if i>=10 then exit do
rs.movenext
loop
rs.close
%>
</TBODY>
</TABLE></TD>
</TR>
</TBODY>
</TABLE>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -