分享
 
 
 

利用TreeView控件 从数据库中动态载入数据

王朝asp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

//************************* aspx *************************//

<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="TreeTest.WebForm1" %>

<%@ Register TagPrefix="iewc" Namespace="Microsoft.Web.UI.WebControls" Assembly="Microsoft.Web.UI.WebControls" %>

<HTML>

<body MS_POSITIONING="GridLayout">

<form id="Form1" method="post" runat="server">

<FONT face="宋体">

<iewc:TreeView id="TreeView1" style="Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 16px" runat="server"

AutoPostBack="True"></iewc:TreeView>

<asp:Label id="Label1" style="Z-INDEX: 102; LEFT: 440px; POSITION: absolute; TOP: 56px" runat="server"

Width="152px" Height="64px">Label</asp:Label>

<asp:Label id="Label2" style="Z-INDEX: 103; LEFT: 456px; POSITION: absolute; TOP: 144px" runat="server"

Width="144px" Height="48px">Label</asp:Label>

<asp:Label id="Label3" style="Z-INDEX: 104; LEFT: 696px; POSITION: absolute; TOP: 64px" runat="server">Label</asp:Label></FONT>

</form>

</body>

</HTML>

//***************************** CS *************************//

using System;

using System.Collections;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Web;

using System.Web.SessionState;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.HtmlControls;

using System.Data.OleDb;

using Microsoft.Web.UI.WebControls;

namespace TreeTest

{

/// <summary>

/// WebForm1 的摘要说明。

/// </summary>

public class WebForm1 : System.Web.UI.Page

{

protected Microsoft.Web.UI.WebControls.TreeView TreeView1;

protected System.Web.UI.WebControls.Label Label1;

protected System.Web.UI.WebControls.Label Label2;

protected System.Web.UI.WebControls.Label Label3;

OleDbConnection Con ;

string dataConStr = "";

private void Page_Load(object sender, System.EventArgs e)

{

dataConStr = "Provider=microsoft.jet.oledb.4.0;Data Source="+Server.MapPath("tree.mdb")+";User ID=;Password=;";

Con = new OleDbConnection(dataConStr);

if(!IsPostBack)

{

TreeNode node = new TreeNode();

node.Text = "根";

node.NodeData = "0";

TreeView1.Nodes.Add(node); // 添加根

AddTestNodes(node); //添加"展开..."节点

}

}

private void AddTestNodes(TreeNode node)

{

TreeNode testnode = new TreeNode();

testnode.Text = "正在展开....";

testnode.NodeData = "testnode";

node.Nodes.Add(testnode);

}

private void AddNodes(TreeNode node)

{

string parentID = "0";

if(node.Parent != null)

{

parentID = node.NodeData;

}

// deeptree 为表名

string cmdstr = "select * from deeptree where parentid="+parentID;

OleDbCommand cmd = new OleDbCommand(cmdstr,Con);

try

{

Con.Open();

OleDbDataReader reader = cmd.ExecuteReader();

while(reader.Read())

{

TreeNode childNode = new TreeNode();

childNode.Text = reader["content"].ToString();

childNode.NodeData = reader["id"].ToString();

//***************** 判断是否有子节点 ************ //

// deeptree 为表名

cmdstr = "select count(*) from deeptree where parentid="+childNode.NodeData;

OleDbConnection Con1 = new OleDbConnection(dataConStr);

OleDbCommand cmd1 = new OleDbCommand(cmdstr,Con1);

Con1.Open();

OleDbDataReader reader1 = cmd1.ExecuteReader();

if(reader1.Read())

{

if(System.Convert.ToInt32(reader1[0]) > 0)

{

AddTestNodes(childNode); // 若有子节点,则添加测试节点

}

}

reader1.Close();

Con1.Close();

//************************************************* //

node.Nodes.Add(childNode);

}

}

catch(Exception ex)

{

Label3.Text = ex.Message;

}

finally

{

if(Con.State != ConnectionState.Closed)

Con.Close();

}

}

#region Web 窗体设计器生成的代码

override protected void OnInit(EventArgs e)

{

//

// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。

//

InitializeComponent();

base.OnInit(e);

}

/// <summary>

/// 设计器支持所需的方法 - 不要使用代码编辑器修改

/// 此方法的内容。

/// </summary>

private void InitializeComponent()

{

this.TreeView1.Expand += new Microsoft.Web.UI.WebControls.ClickEventHandler(this.TreeView1_Expand);

this.Load += new System.EventHandler(this.Page_Load);

}

#endregion

private void TreeView1_Expand(object sender, Microsoft.Web.UI.WebControls.TreeViewClickEventArgs e)

{

Label1.Text = e.Node;

TreeNode node = new TreeNode();

node = TreeView1.GetNodeFromIndex(e.Node);

//node = TreeView1.GetNodeFromIndex("0.2");

if(node != null)

{

Label2.Text = node.NodeData;

//判断该节点下子节点数,若1个且为testnode说明未填充所以子节点

if((node.Nodes.Count == 1)&& (node.Nodes[0].NodeData == "testnode"))

{

node.Nodes.Clear(); //清空

AddNodes(node); // 填充子节点

}

}

}

}

}

数据库中设置字段为 id, content,parentid

PS: 缺点,因为AutoPostBack为TRUE,提交到服务器时每次都会闪烁. 而且载入数据越多越慢..

没有 用ASP 来的快.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有