http://www.cx58.cn
如何将所有个别分类或所有分类的前10个显示在首页..先谢了.
分类字段:sort_id 商品字段:hw_name
"最新加入"栏的代码如下:
<table width="48%" border="0" cellspacing="0" cellpadding="0" height="60" align="center">
<tr>
<%
sql="select top 60 * from hw order by hw_id DESC"
rs.open sql,conn,3,3
if rs.eof then
%>
<td valign="top" align="left" bgcolor="#FFFFFF"><div align="center">
暂无兑换商品<br>
</div></td>
<%end if
i=0
do while not rs.eof
i=i+1
%>
<td align="left" valign="top" bgcolor="#FFFFFF">
<table width="100" border="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111" height="28" bgcolor="#F7F7F7">
<tr>
<td valign="bottom" align="center" height="28" style="border: 1px dotted #C0C0C0"><b><a title="号码分类:<%=rs("kaiben")%> 市场价:<%=rs("pifa")%> 会员价:<%=rs("hw_cash")%>" href="views.asp?hw_id=<%=rs("hw_id")%>">
<font size="4"><%=rs("hw_name")%></font></a></b></td>
</tr>
</table> </td>
<%
if (i mod 4=0) and i>=4 then
%>
</tr>
<tr>
<%
end if
if i>=60 then exit do end if
rs.movenext
loop
rs.close
%>
</tr>
</table>