ASP.NET - TreeView to XML

Asked By Ganesh
30-Jul-10 05:45 AM
Hi,

How do I get the Xml version of the below ASP.net "TreeView" so that I can recreate it from that Xml?

Note: This tree view was loaded using Xml.

  Mash B replied to Ganesh
30-Jul-10 05:51 AM
Refer below link which uses recursive function for parses every node and generating xml.

http://www.codeproject.com/KB/cpp/treeviewtoxml.aspx
  Ganesh replied to Mash B
30-Jul-10 06:02 AM
No, that does not work. Its ASP.Net treeview which Iam using.
Create New Account
help
sql query for xml I have a table, table1, the column names are id, name, telephone, fax, address, zip The xml output format I need to have is <root> <table1> <id> 1< / id> <name> John< / name table1> . . . < / table1> <root> I want to know if it's possible to create a hierarchical xml output like above when all the data are in one table or I need to I will appreciate it if anyone can give me some examples. yes u can create xml like that u need to create manually in loop like / / fetch data in datatable dt dt["fax"].ToString() + "< / fax> "; strXml = strXml + "< / ContactNumber> "; strXml = strXml + "< / HomeAddress> " ; } strXml = strXml +"< / table1> < / root> " SQL / XML Tutorial: SQL / XML, XQuery, and Native XML Programming Languages Introduction Most web applications have connections to databases and use XML to transfer data from the database to the web application and vice versa. Every major
Net hi friends Any one send frequently asked Important questions in C# .Net, ADO .Net, Asp .Net and Sql Server. . . . . . . . tx in Advance. . . . . . Hi, Find this. . (B)What is an IL? (B A) What is scavenging? (B) What are different types of caching using cache object of ASP.NET? (B) How can you cache different version of same page using ASP.NET cache object? (A) How will implement Page Fragment Caching? (B) Can you compare ASP.NET sessions with classic ASP? (B) Which are the various modes of storing ASP.NET session
in Sql server as var_name int How do you separate business logic while creating an ASP.NET application? There are two level of asp.net debugging 1. Page level debugging For this we have to edit the page level debugging The control itself will take care of the date display How can you deploy an asp.net application ? You can deploy an ASP.NET Web application using any one of the following three deployment options. a) Deployment using VS
Treeview in asp.net with examples Treeview in asp.net with examples HI try this screenshots refer links for code http: / / www.codeproject.com / KB / webforms / ClientSideTreeView.aspx http: / / www.essentialobjects.com / Products / EOWeb / TreeView.aspx Using TreeView you can make Tree structure in your application. Example = In this example