各位前辈:
我是刚学asp编程,我做了一个网站,在页面上有几个分类,如:家具类,沙发类,床品类,一部分是普通商品,还有部分是折扣商品,我想点击家具类时,既能让普通商品的家具类出现在页面上,同时这一类的折扣商品也显示在页面上,现在我已经能够让普通商品显示在页面上,可是折扣商品显示不出来
<%
dim myrs_root
set myrs_root=server.CreateObject("adodb.recordset")
myrs_root.Open "select * from t_taobao_catalog where mever='" & current_ver & "' order by InfoClsIndex",conn,1,1
do until myrs_root.eof
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="6" valign="top"></td>
</tr>
<tr>
<tr>
<td height="40" align="center" valign="middle"><span class="STYLE13"><a href="taobao1.asp?catalogid=<%=myrs_root("catalogID")%>">
<%if cstr(myrs_root("catalogID"))=cstr(trim(request("catalogID"))) then %>
<strong><%=myrs_root("catalogname")%></strong>
<%else%>
<%=myrs_root("catalogname")%>
<%end if%>
</a></span></td>
</tr>
</table>
<%
myrs_root.movenext
loop
myrs_root.close
set myrs_root=nothing
%>