Build tree out of the XML data file : XML TreeView « XML « ASP.Net






Build tree out of the XML data file

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>TreeView XML</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:TreeView
        id="TreeView1"
        DataSourceID="srcMovies"
        Runat="server" />
        
     <asp:XmlDataSource
        id="srcMovies"
        DataFile="Movies.xml"
        Runat="server" />   
    
    </div>
    </form>
</body>
</html>

<%--
<?xml version="1.0" encoding="utf-8" ?>
<movies>
  <action>
    <StarWars />
    <IndependenceDay />
  </action>
  <horror>
    <Jaws />
    <NightmareBeforeChristmas />
  </horror>
</movies>
--%>

           
       








Related examples in the same category

1.Bind inline XML datasource to asp treeview
2.asp:TreeView binded to XML transformation data
3.asp TreeView data binding to XML data
4.XML data binding?
5.detailed XML data binding
6.TreeNode Binding