|
<!--#include file="conn.asp"-->
<%
set rs2=server.createobject("adodb.recordset")
set rs=server.createobject("adodb.recordset")
type_id=request.querystring("type_id")
if type_id="" then
sql="select top 1 type_id from classes"
rs.open sql,conn,1,1
if not(rs.eof and rs.bof) then
type_id=rs("type_id")
else
response.write("请添加产品大类")
response.end
end if
rs.close
else
type_id=replace(type_id,"_","&")
end if
%>
.........
<%sql="select * from products where type_id='"&rs("type_id")&"' order by product_date desc"
rs2.open sql,conn,1,1
rdcount2=rs2.recordcount
for k=1 to rdcount2
%>
<%
if rs2("class_id")<>"" then
%>
<TR>
<TD width="22">
<p align="center">
<IMG
src="images/arrow_blk.gif"
border=0 align="right"></TD>
<TD><A class=navsublinks href="prod.asp?type_id=<%=replace(rs2("type_id"),"&","_")%>"><%=rs2("class_id")%></A></TD></TR>
<%
else
%>
<%
end if
%>
<%rs2.movenext
next
rs2.close
%>
..........................
用到的数据库字段有
product_id 产品编号 自动
type_id 大类名称 文本
class_id 小类名称 文本
请前辈指点
1。如何修改红色的sql查询语句,才能让下面的 rs2("class_id") 不重复
2。如何修改蓝色的链接参数,使得,链接到的页面只显示该class_id(小类)的产品
小弟是初学者,如果前辈能帮忙改一下,小弟感激不尽
谢谢 |
|