掌握TreeView用法(2)

来源:未知 责任编辑:责任编辑 发表时间:2014-01-25 11:35 点击:

35
36         public void DeleteNode(int ParentId)
37         {
38             //获得以该节点为父节点的所有子节点
39             IEnumerable<ItemsNode> childens = GetEveryOneByParent(ParentId);
40             foreach (ItemsNode child in childens)
41             {
42                 DeleteNode((int)child.Id);
43             }
44            Delete(ParentId);
45         }
46      
47         //实例化对象
48         private static ItemsNode CreateItemsNose(DataRow row)
49         {
50             ItemsNode item = new ItemsNode();
51             item.Id = row.IsNull("Id")?null:(int?)row["Id"];
52             item.name = (string)row["name"];
53             item.parentId = row.IsNull("parentId") ? null : (int?)row["parentId"];
54             item.content = (string)row["content"];
55             return item;
56         }
57         //删除操作
58         public  int Delete(int id)
59         {
60             return sqlHelper.ExecuteNonQuery("delete from ItemsNode where id=@id",
61             new SqlParameter("id", id));
62         }
63     }
64 }

 
BLL层代码:
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Text;
 4 using DataTreeDAL;
 5 using DataTreeModel;
 6
 7 namespace DataTreeBLL
 8 {
 9     class TreeNodeBLL
10     {

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • 浅析.NET下XML数据访问新机制
  • asp.net 面试+笔试题目第1/2页
  • C# 邮件地址是否合法的验证
  • C#高级编程:数据库连接[1]
  • asp.net 设置GridView的选中行的实现代码
  • 经典C++程序1
  • IIS 自动回收导致后台定时器失效的问题解决
  • ASP.NET&#160;GridView列表代码示例
  • 微软ASP.NET站点部署指南(3):使用Web.Config文件的Transforma
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1