zoukankan
html css js c++ java
杂杞
protected
internal
void
loadtree(ComponentArt.Web.UI.TreeView tv )
{
tv.Nodes.Clear();
DataSet ds
=
Sqlhelp.fillDataSet(
"
select * from dept where Father_dept_ID=''
"
);
foreach
(DataRow row
in
ds.Tables[
0
].Rows)
{
TreeViewNode root
=
new
TreeViewNode();
root.CssClass
=
"
tree
"
;
root.ImageUrl
=
@"
..\..\image\treeimages\res.gif
"
;
root.Text
=
row[
"
Dept_name
"
].ToString();
root.ID
=
row[
"
Sub_dept_ID
"
].ToString();
loadtree(root,row[
"
Sub_dept_ID
"
].ToString());
tv.Nodes.Add(root);
}
tv.ExpandAll();
}
private
void
loadtree(TreeViewNode node,
string
deptid)
{
DataSet ds
=
Sqlhelp.fillDataSet(
"
select * from dept where Father_dept_ID='
"
+
deptid
+
"
'
"
);
foreach
(DataRow row
in
ds.Tables[
0
].Rows)
{
TreeViewNode subnode
=
new
TreeViewNode();
subnode.Text
=
row[
"
Dept_name
"
].ToString();
subnode.ID
=
row[
"
Sub_dept_ID
"
].ToString();
node.Nodes.Add(subnode);
subnode.ImageUrl
=
@"
..\..\image\treeimages\res.gif
"
;
subnode.CssClass
=
"
tree
"
;
loadtree(subnode,row[
"
Sub_dept_ID
"
].ToString());
}
}
查看全文
相关阅读:
html基础知识
Python yield 使用浅析
XSS跨站攻击
box-sizing的用法(笔记)
编译原理中DFA最小化
提醒自己!!!
Eclipse下运行maven项目失败且Tomcat服务器也启动不了
Descriptio Resource Path LocationType Archive for required library: 'D:/apache-maven/apache-maven-3.6.0/mavenrepository/org/springframework/spring-aspects/4.3.7.RELEASE/spring-aspects-4.3.7.RELEASE.
Eclispe创建maven工程缺失web.xml报web.xml is missing and <failOnMissingWebXml> is set to true的错误
ssm 出现 Method threw 'org.apache.ibatis.binding.BindingException' exception.Invalid bound statement (not found)……
原文地址:https://www.cnblogs.com/aipeli/p/295860.html
最新文章
关于c# 发射的调用并进行缓存
c# dataTable 合并两个列到一个新列中
判断DataTable某字段是否包含某值
C# GZip对字符串压缩和解压
JAVA对字符串的压缩与解压缩
MarkMan – 马克鳗,让设计更有爱!
respond.min.js IE失效问题
没读过设计院校如何成为设计师?
刮刮乐效果
webGL
热门文章
Retina时代的前端视觉优化
打造移动终端的 WebApp(一):搭建一个舞台
移动设备的界面设计尺寸
前端相关js
XSS跨站攻击(二)
Django Models
document.domain 跨域问题[转]
python二进制处理详述(转)
Python连接MySQL数据库执行sql语句时的参数问题
渗透测试方法及流程(转)
Copyright © 2011-2022 走看看