ASP源码,在内容页中需要显示分类名称,如何调用写代码?

分类保存在表show_pro中,字段title代表的是分类名称。添加的产品内容在表show中。字段tid是分类。但只是数字。遇到的问题是,产品页中需要知道,此产品属于哪个... 分类保存在表show_pro中,字段title 代表的是分类名称。
添加的产品内容在表show中。字段tid 是分类。但只是数字。
遇到的问题是,产品页中需要知道,此产品属于哪个分类。要调用。不会了。

也简单,表show 中的 tid 与表show_pro 中的ID 是关联的。对应的,唯一的。
上个图,把二个表的结构给大家看一下。
答对了,再奖50分!
提供列表页的分类调用方法。供参考。
......................省去
sql="select * from Show where tid="&id&" or tid in (Select id from Show_Pro where pid="&id&") order by id desc"
sql2="select * from Show_Pro where id="&id
set rs1=conn.execute(sql2)
if not rs1.eof then
menuname=rs1("title")
else
menuname="没有此分类"
end if
......................省去
到时调用,输入标签{{menuname}} 即可调用了。
展开
 我来答
中国人07
2011-10-04 · 超过10用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:37.6万
展开全部
sql="select * from Show where tid="&id&" or tid in (Select id from Show_Pro where pid="&id&") order by id desc"
sql2="select * from Show_Pro where id="&id
sql3="select title from show_pro where id=(select tid from show where id="&id&")"
set rs1=conn.execute(sql3)
if not rs1.eof then
menuname=rs1("title")
else
menuname="没有此分类"
end if
最美乡村行
2011-09-20 · TA获得超过1136个赞
知道大有可为答主
回答量:1191
采纳率:0%
帮助的人:1620万
展开全部
如果你的参数id是show表中的,那应该这样
......................省去
sql="select * from Show where tid="&id&" or tid in (Select id from Show_Pro where pid="&id&") order by id desc"
sql2="select * from Show_Pro where id="&id
sql3="select title from show_pro where id=(select tid from show where id="&id&")"
set rs1=conn.execute(sql3)
if not rs1.eof then
menuname=rs1("title")
else
menuname="没有此分类"
end if

......................省去

因为不知道你的模板调用方法,所以输入标签{{menuname}} 即可调用了那得看原来的是否支持,你先试一试吧,不行Hi我
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
阳光上的桥
2011-09-19 · 知道合伙人软件行家
阳光上的桥
知道合伙人软件行家
采纳数:21424 获赞数:65793
网盘是个好东东,可以对话和传文件

向TA提问 私信TA
展开全部
最简单的方法是,修改你查询商品的SQL语句,一并返回分类名称,假设你现在的SQL是:
$sql="select * from show where ...";
那么修改为下面这样就可以了:
$sql="select a.*,b.title from show a,show_pro b where a.tid=b.id ...";
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式