服务器之家

服务器之家 > 正文

asp无限分级(递归调用)

时间:2019-10-30 15:50     来源/作者:asp技术网

数据库字段:id(自动编号),class_name(菜单名),parentID(父菜单id) 

复制代码代码如下:


<% 
dim m  
m=0 
call ShowTree(0)%> 
<% 
Sub ShowTree(parentID) 
     dim s 
     m=m+1 
     Dim rs 
     Set rs = Server.CreateObject("ADODB.RecordSet") 
     sql="Select class_id,class_name FROM [WMS_Class] where class_father_id="&Cint(parentID) 
     rs.open sql,Conn,1,1 
     if rs.eof and m = 1 then 
           response.Write("该频道暂无栏目") 
     end if 
     Do While Not rs.Eof 
               response.Write rs(0) 
               for n=1 to m 
                 if n = m and m = 1 then 
                       Response.Write ("╋") 
                 elseif n = 1 then 
                       Response.Write (" ") 
                 elseif n = m then 
                       Response.Write ("├") 
                 else 
                       Response.Write ("│") 
                 end if 
           next 
             response.Write rs(1)&"<br>" 
           Call ShowTree(rs(0)) 
           m=m-1 
           rs.Movenext 
     Loop 
End Sub 
%>

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部