博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET - TreeView 增删
阅读量:5214 次
发布时间:2019-06-14

本文共 2931 字,大约阅读时间需要 9 分钟。

效果:

 

前端代码:

1 <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site1.master.cs" Inherits="APManage.Site1" %> 2  3  4  5  6  7 
8 9
10
11 12 13
14
15
16
17
修改节点
18
19 20
21
22
23 24
View Code

 

后端代码:

1 using System; 2 using System.Collections.Generic; 3 using System.Data; 4 using System.Linq; 5 using System.Web; 6 using System.Web.UI; 7 using System.Web.UI.WebControls; 8 using APManage.App_Code; 9 using System.Data.SqlClient;10 11 12 namespace APManage13 {14     public partial class updateNodes : System.Web.UI.Page15     {16         protected void Page_Load(object sender, EventArgs e)17         {18             this.DropDownList1.DataSource = SQLHelper.ExecuteTable("select * from Tb_APCategory where ParentID = 1000", CommandType.Text);19             this.DropDownList1.DataValueField = "ID";20             this.DropDownList1.DataTextField = "CategoryName";21             this.DropDownList1.DataBind();22 23 24             List
inof = new List
();25 SqlDataReader sdr = SQLHelper.ExcuteReader("select ID, CategoryName from Tb_APCategory where ParentID = 1000", CommandType.Text);26 while (sdr.Read())27 {28 SqlDataReader sdr_2 = SQLHelper.ExcuteReader("select ID, CategoryName from Tb_APCategory where ParentID = " + sdr["ID"].ToString() + "", CommandType.Text);29 while (sdr_2.Read())30 {31 inof.Add(new category(sdr_2["ID"].ToString(), sdr_2["CategoryName"].ToString()));32 }33 }34 35 this.DropDownList2.DataSource = inof;36 this.DropDownList2.DataValueField = "ID";37 this.DropDownList2.DataTextField = "Name";38 this.DropDownList2.DataBind();39 40 //this.DropDownList2.DataSource = SQLHelper.ExecuteTable("select * from Tb_APCategory", CommandType.Text);41 //this.DropDownList2.DataValueField = "";42 //this.DropDownList2.DataTextField = "";43 //this.DropDownList2.DataBind();44 }45 46 public class category47 {48 public category(string id, string name)49 {50 Id = id;51 Name = name;52 }53 54 private string id;55 56 public string Id57 {58 get { return id; }59 set { id = value; }60 }61 62 private string name;63 64 public string Name65 {66 get { return name; }67 set { name = value; }68 }69 }70 }71 }
View Code

 

转载于:https://www.cnblogs.com/KTblog/p/4816716.html

你可能感兴趣的文章
移动端rem布局屏幕适配插件(放js中便可使用)
查看>>
Docker
查看>>
bzoj2259 [Oibh]新型计算机
查看>>
对位与字节的深度认识
查看>>
C++编程基础二 16-习题4
查看>>
MongoDB遇到的疑似数据丢失的问题。不要用InsertMany!
查看>>
服务器被疑似挖矿程序植入107.174.47.156,发现以及解决过程(建议所有使用sonatype/nexus3镜像的用户清查一下)...
查看>>
类型“XXX”的控件“XXXX”必须放在具有 runat=server 的窗体标记内。
查看>>
JQuery 学习
查看>>
session token两种登陆方式
查看>>
C# ArrayList
查看>>
IntelliJ IDEA 12集成Tomcat 运行Web项目
查看>>
java,多线程实现
查看>>
个人作业4-alpha阶段个人总结
查看>>
android smack MultiUserChat.getHostedRooms( NullPointerException)
查看>>
递归-下楼梯
查看>>
实用的VMware虚拟机使用技巧十一例
查看>>
监控工具之---Prometheus 安装详解(三)
查看>>
Azure Iaas基础之---创建虚拟机
查看>>
不错的MVC文章
查看>>