ASP内容页调用分类的解决办法
后台添加分类(分类的名称,保存在表show_pro中了),然后添加内容,出现的分类名称以tid数字形式保存在表show中了。也就是内容在表show中。有内容标题,来源,内...
后台添加分类 (分类的名称,保存在表show_pro中了)
,然后添加内容,出现的分类名称以tid 数字形式保存在表show中了。也就是内容在表show中。有内容标题,来源,内容等字段。就是分类没有汉字。以tid 下的数字显示。
难心的是,我如何在内容中调用这个分类啊。意思是,打开内容页,需要调用属于哪个分类下的内容。问题补充:
以下是列表页调用分类的代码。仅供参考。
'==读取产品列表
id=Request("id")
if id="" then
sql="select * from Show order by id desc"
menuname="产品中心"
else
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
end if 展开
,然后添加内容,出现的分类名称以tid 数字形式保存在表show中了。也就是内容在表show中。有内容标题,来源,内容等字段。就是分类没有汉字。以tid 下的数字显示。
难心的是,我如何在内容中调用这个分类啊。意思是,打开内容页,需要调用属于哪个分类下的内容。问题补充:
以下是列表页调用分类的代码。仅供参考。
'==读取产品列表
id=Request("id")
if id="" then
sql="select * from Show order by id desc"
menuname="产品中心"
else
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
end if 展开
4个回答
展开全部
sql2="select * from Show_Pro where id="&tid '这行的tid就调用产品中的tid
set rs1=conn.execute(sql2)
if not rs1.eof then
menuname=rs1("title")
else
menuname="上一页"
end if
if not rs1.eof then
menuname=rs1("title")
else
menuname="下一页"
end if
set rs1=conn.execute(sql2)
if not rs1.eof then
menuname=rs1("title")
else
menuname="上一页"
end if
if not rs1.eof then
menuname=rs1("title")
else
menuname="下一页"
end if
展开全部
sql2="select * from Show_Pro where id="&tid '这行的tid就调用产品中的tid
set rs1=conn.execute(sql2)
if not rs1.eof then
menuname=rs1("title")
else
menuname="没有此分类"
end if
set rs1=conn.execute(sql2)
if not rs1.eof then
menuname=rs1("title")
else
menuname="没有此分类"
end if
追问
语法错误 (操作符丢失) 在查询表达式 'id=' 中。
提示上面的。set rs1=conn.execute(sql2) 这行提示有错
追答
tid要你自己改成产品的id,,看你是怎么调用这个产品id的了,不是复制进去就行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
设置外码,通过外码来索引即可,多表连接查询即可
select Show_Pro.title,* from Show_Pro,Show
where Show_Pro.Id=Show.Tid
and Show.Tid='&id&'
select Show_Pro.title,* from Show_Pro,Show
where Show_Pro.Id=Show.Tid
and Show.Tid='&id&'
参考资料: sername
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
难心的是,我如何在内容中调用这个分类啊。意思是,打开内容页,需要调用属于如果四类文章在四个表里的话,那很好解决,通过加减id号来调用上下篇的题目
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询