ph.asp

来自「商品订单管理:商品分类管理 添加与修改商品 管理订单 投诉订单 反馈信息 商品留」· ASP 代码 · 共 30 行

ASP
30
字号
<table width="100%" border="0" cellspacing="0" cellpadding="0">
   <tr><td align="center" height="5"></td></tr>
   <tr><td align="center"><img border="0" src="img/promo_list_top.gif" width="100%" height="4"></td></tr>
   <tr><td align="center" bgcolor="#DBC2B0" height="20"><strong>Most Wanted 
	Product</strong></td></tr>
   <tr><td  align="center"> 

<%sql="select top 10 * from hw order by hw_buys DESC"
  rs.open sql,conn,3,3
  if rs.eof then
  response.write "No Product"
  else
  i=0
  do while not rs.eof
%>
                                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                      <tr>
                                        <td width="70%" height="22" bgcolor="#F5EFE7">&nbsp; <a href="views.asp?hw_id=<%=rs("hw_id")%>"><%=rs("hw_name")%></a></td>
                                        <td width="30%" bgcolor="#F5EFE7"><%=rs("daili")%></td>
                                      </tr>
                                    </table>
<%i=i+1                                                   
  if i>10 then exit do   
  rs.movenext
  loop
  end if
  rs.close
%>
</td></tr>
<tr><td bgcolor="#F5EFE7" align="right" height="15"><a href="wel.asp" target="_blank"><img src="img/more.gif" width="45" height="10" border="0"></a>&nbsp;&nbsp;&nbsp; </td></tr></table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?