XML as the TreeView's DataSource

 
XML as the TreeView's DataSource

The simplest method of rolling out your TreeView control is utilizing the interface within Visual Studio 2005 Beta 2 without having to write one single line of code. Pretty cool huh! The first thing you will need is a well-formed XML file. For the purpose of this article, I am utilizing an XML file which contains Name and URL values.

Listing 1: authors.xml

 
<?xml version="1.0" standalone="yes"?>
<ASPAlliance_Authors>
    <Author NAME="Steven Smith">
        <blog URL="http://blogs.aspadvice.com/ssmith/"></blog>
    </Author>
    <Author NAME="Robert Chartier">
        <blog URL="http://weblogs.asp.net/rchartier/"></blog>
    </Author>
    <Author NAME="Steven Swafford">
        <blog URL="http://blogs.aspadvice.com/sswafford/"></blog>
    </Author>
    <Author NAME="J. Ambrose Little">
        <blog URL="http://dotnettemplar.net/"></blog>
    </Author>
</ASPAlliance_Authors>


 

The first thing you need to do is to create a new Web Form. Once you have the Web Form in place, there are two controls that you must add to this Web Form. First is the XmlDataSource, which will be what we will use as the DataSource.

Figure 1: Configure Data Source
Configure Data Source


Next, drag and drop a TreeView control onto your Web Form. Bring up the TreeView Tasks and select the XmlDataSource that you previously configured. In this case, the name of the DataSource is XmlDataSource1.

Figure 2: TreeView Tasks, XmlDataSource Configuration
TreeView Tasks, XmlDataSource Configuration


The final step in this process is to open the TreeView DataBindings Editor and configure the TreeView control.

Figure 3: TreeView DataBindings Editor
TreeView DataBindings Editor


There are three items that we will databind to this TreeView control.

  1. ASPAlliance_Authors – parent node
    1. In the available data bindings area, highlight ASPAlliance_Authors and click Add. Next, within the data binding properties, add the text “ASPAlliance Authors Blog List” to the Text property.
  2. Author – child node
    1. In the available data bindings area, highlight Author and click Add. In the data bindings TextField attribute, select NAME from the dropdown list.
  3. URL – Used as an HREF that will be attached to the Author child node
    1. In the available databindings area, highlight Blog and click Add. In the data bindings TextField attribute, select URL from the dropdown list, and select URL as well for the NavigateUrlField attribute.

Finally, make sure that the "Auto-generate data bindings" checkbox is checked.

That is all it takes to generate your TreeView control, without writing one single line of code. Execute this Web Form and you will see the following.

Figure 4: TreeView Control Execution
TreeView Control Execution

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值