asp.net 无限分类第1/3页
程序员文章站
2022-11-13 09:06:55
1、递归函数 // '递归遍历自建目录树=======================================================...
1、递归函数
// '递归遍历自建目录树=============================================================================
private void showdir(string szml,string sindex)
{
system.data.sqlclient.sqlconnection sqlcon=new system.data.sqlclient.sqlconnection(connectionstring);
string sqlstr="select * from mltable where mlzml=n'"+ szml +"'";
system.data.sqlclient.sqldataadapter sqlada=new system.data.sqlclient.sqldataadapter(sqlstr,sqlcon);
system.data.datatable dt=new datatable();
sqlada.fill(dt);
microsoft.web.ui.webcontrols.treenode node1;
string sindex0;
string sindex2;
int theid;
int sindex1=0;//记录树的最后一位值
foreach(system.data.datarow dtdatarow in dt.rows)
{
theid=convert.toint32(dtdatarow["mlid"]);
node1=new microsoft.web.ui.webcontrols.treenode();
node1.text=dtdatarow["mlmc"].tostring();
node1.imageurl="images/trees/folder.gif";
node1.expandedimageurl="images/trees/folderopen.gif";
node1.expanded=false;
node1.navigateurl="admin_tree_show.aspx?theid=" + theid +"&sindex="+ sindex+"."+sindex1.tostring();
node1.id="";
node1.target="main";
if(sindex=="")
{
sindex2=treeview1.nodes.indexof(node1).tostring();
sindex0=sindex2;
}
else
{
microsoft.web.ui.webcontrols.treenode pnode=treeview1.getnodefromindex(sindex);
pnode.nodes.add(node1);
sindex2=pnode.nodes.indexof(node1).tostring();
sindex0=sindex + "." + sindex2;
sindex1++;//记录当前树下叶子的个数,即当前叶子的号
}
showdir(dtdatarow["mlid"].tostring(),sindex0);
}
sqlcon.close();
}
// '递归遍历自建目录树=============================================================================
private void showdir(string szml,string sindex)
{
system.data.sqlclient.sqlconnection sqlcon=new system.data.sqlclient.sqlconnection(connectionstring);
string sqlstr="select * from mltable where mlzml=n'"+ szml +"'";
system.data.sqlclient.sqldataadapter sqlada=new system.data.sqlclient.sqldataadapter(sqlstr,sqlcon);
system.data.datatable dt=new datatable();
sqlada.fill(dt);
microsoft.web.ui.webcontrols.treenode node1;
string sindex0;
string sindex2;
int theid;
int sindex1=0;//记录树的最后一位值
foreach(system.data.datarow dtdatarow in dt.rows)
{
theid=convert.toint32(dtdatarow["mlid"]);
node1=new microsoft.web.ui.webcontrols.treenode();
node1.text=dtdatarow["mlmc"].tostring();
node1.imageurl="images/trees/folder.gif";
node1.expandedimageurl="images/trees/folderopen.gif";
node1.expanded=false;
node1.navigateurl="admin_tree_show.aspx?theid=" + theid +"&sindex="+ sindex+"."+sindex1.tostring();
node1.id="";
node1.target="main";
if(sindex=="")
{
sindex2=treeview1.nodes.indexof(node1).tostring();
sindex0=sindex2;
}
else
{
microsoft.web.ui.webcontrols.treenode pnode=treeview1.getnodefromindex(sindex);
pnode.nodes.add(node1);
sindex2=pnode.nodes.indexof(node1).tostring();
sindex0=sindex + "." + sindex2;
sindex1++;//记录当前树下叶子的个数,即当前叶子的号
}
showdir(dtdatarow["mlid"].tostring(),sindex0);
}
sqlcon.close();
}
1
推荐阅读
-
asp.net Web Services上传和下载文件(完整代码)第1/2页
-
创建第一个ASP.NET应用程序(第1节)
-
Asp.Net实现无限分类生成表格的方法(后台自定义输出table)
-
Asp.Net实现无限分类生成表格的方法(后台自定义输出table)
-
asp.net实现DropDownList,TreeView,ListBox的无限极分类目录树
-
ASP.NET中常用的三十三种代码第1/7页
-
asp.net下用url重写URLReWriter实现任意二级域名的方法第1/2页
-
ASP.net Forms验证Demo第1/3页
-
asp.net Web Services上传和下载文件(完整代码)第1/2页
-
Asp.net 无限级分类实例代码