Test TreeView : TreeView « Asp Control « ASP.Net






Test TreeView

<%@ Page Language="C#"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
   <title>Test TreeView</title>
</head>
<body>
   <form id="form1" runat="server">
   <div id="container">
        <asp:TreeView ID="treeMain" 
                      runat="server" 
                      DataSourceID="siteSource" 
                      ImageSet="Custom" 
                      NodeIndent="15" 
                      CollapseImageUrl="images/iconCollapse.gif" 
                      ExpandImageUrl="images/iconExpand.gif"
                      NoExpandImageUrl="images/iconPage.gif" >
           <NodeStyle NodeSpacing="2" ChildNodesPadding="6"
              HorizontalPadding="4" />
           <RootNodeStyle HorizontalPadding="15" VerticalPadding="5"
             BorderStyle="Solid" BorderWidth="1" BorderColor="#ACB9B9"/>
        
        </asp:TreeView>


      <asp:SiteMapDataSource ID="siteSource" runat="server" 
         ShowStartingNode="true"  />
   </div>
   </form>
</body>
</html>

File: Web.sitemap

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
   <siteMapNode url="BookHome.aspx" title="Home"  
            description="Return to home page">
      <siteMapNode url="Catalog.aspx" title="Catalog" >
         <siteMapNode url="Categories.aspx" title="Categories" >
            <siteMapNode url="List.aspx?cat=1" title="Graphics" />
            <siteMapNode url="List.aspx?cat=2" title="Internet" />
            <siteMapNode url="List.aspx?cat=3" title="Networking" />
         </siteMapNode>
         <siteMapNode url="Series.aspx" title="Series" >
            <siteMapNode url="List.aspx?series=1" title="Core Series" />
            <siteMapNode url="List.aspx?series=2" title=".NET Series" />
            <siteMapNode url="List.aspx?series=3" title="Signature Series"/>
         </siteMapNode>
      </siteMapNode>
      <siteMapNode url="Search.aspx" title="Search"  />
      <siteMapNode url="Help.aspx" title="Help" >
         <siteMapNode url="About.aspx" title="About Us" />
         <siteMapNode url="Contact.aspx" title="Contact Us" />
      </siteMapNode>
   </siteMapNode>
</siteMap>

 








Related examples in the same category

1.A basic TreeView control
2.A TreeView control with the MSDN style applied to it
3.Binding a TreeView control to the Data.xml file
4.Add check boxes to leaf nodes (C#)
5.Add check boxes to leaf nodes (VB)
6.Applying custom images to the TreeView control
7.Expanding and collapsing the nodes of the TreeView control programmatically (C#)
8.Expanding and collapsing the nodes of the TreeView control programmatically (VB)
9.Expanding specific nodes programmatically
10.Expanding nodes programmatically using the Expanded property
11.Displaying database data with a TreeView control.
12.Using Populate On Demand and AJAX
13.Formatting the TreeView Control
14.Using Styles with the TreeView control.
15.Applying styles to different TreeView node levels.
16.Adding nodes programmatically to the TreeView control (C#)
17.Adding nodes programmatically to the TreeView control (VB)
18.Custom TreeView Control
19.Database tree
20.TreeView Populate On Demand
21.TreeView DataBindings
22.Dynamic tree view
23.ParentNodeStyle in a TreeView
24.DirectoryInfo TreeView