Mega Code Archive

 
Categories / ASP.Net / XML
 

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> --%>