无限级分类(ASP) (转)

无限级分类(ASP) (转)[@more@]

比较简单的一个页面,类似csdn论坛在ns下的左边列表

描述:

1.

数据名:tree.mdb

表名:tree

表结构:id(自编)  pid(数字) content(文本) link(文本)

2.

图片:endnode.gif  collapsed.gif  back.gif(均在img目录下,可自行修改)

3.

代码:

<!--#include file="conn.inc"--&gt



microsoft FrontPage 4.0">
无限级列表
<!--
by fason( 2003-5-12)
--&gt





newid=Request.QueryString("id")
if newid="" or CInt(newid)<0 then newid=0
if isNumeric(newid) then
listTree(CInt(newid))
end if

function listTree(id)
dim rs
dim imgFolder,imgFile
dim link,href,parentHref
dim target,ahref,click
target="main" '所指定的框架
imgFolder="img/" '默认路径
set rs=conn.execute("select *,(select count(*) from tree where pid = T.id) as children,(select pid from tree where id="&id&") as parent from tree T where pid="&id)
if not rs.eof then
parentHref=Request.ServerVariables("URL")&"?id="&rs("parent")
if id<>0 then Response.Write "

"&VbCrLf
do while not rs.eof
if rs("children")>0 then
img=imgFolder+"collapsed.gif"
href=Request.ServerVariables("URL")&"?id="&rs("id")
click="οnclick=""location.href='"&href&"'"""
else
img=imgFolder+"endnode.gif"
href=" Javascript:void(0)"
end if
if not isNull(rs("link")) then
ahref=rs("link")
else
ahref=" Javascript:void(0)"
target="_self"
end if
link=" "&rs("content")&""
Response.Write "
%22&img&%22 "&link&"
"
rs.movenext
l oop
rs.close:set rs=nothing
end if
end function
conn.close:set conn=nothing
%>





conn.inc:

dim conn
set conn = Server.Createobject("ADODB.Connection")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data source=" & Server.mappath("tree.mdb") & ";Persist Security Info=False"
%>

4.测试:IE6,ns7,Mozilla下测试通过

原理比较简单,有错请大家指正,谢谢

 


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10752043/viewspace-956642/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10752043/viewspace-956642/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值