A method for creating a tree directory from a database using xml (C #) (2)

Source: Internet
Author: User
I. UI layer processing:
# Region regenerate the mobile service column list XML
Private void CreateMetoneTree ()
{

XmlDoc_Metone = new XmlDocument ();

New Town. Com. MobileServiceTypeCollection (). GetMetoneTree (out ds );
// Generate the root node
XmlElement treeContentElement = xmlDoc_Metone.CreateElement ("NewDataSet ");
XmlDoc_Metone.AppendChild (treeContentElement );
// Recursively generate XML documents for channels
For (int j = 0; j <ds. Tables ["Tree"]. Rows. Count; j ++)
{
If (Int32.Parse (ds. Tables ["Tree"]. Rows [j]. ItemArray [2]. ToString () = 0)
{
This. Bucket xmltree (treeContentElement, j );
}
Else
{
Continue;
}
}
String fileName = Server. MapPath ("Xml/MetoneTree. xml ");
XmlDoc_Metone.Save (fileName );
}
# Endregion

# Region structure XML tree
Private void bucket xmltree (XmlElement tempXmlElement, int location)
{
DataRow tempRow = ds. Tables ["Tree"]. Rows [location];
// Generate a Tree node
XmlElement treeElement = xmlDoc_Metone.CreateElement ("Tree ");
TempXmlElement. AppendChild (treeElement );

This. AppendChildElement ("MetoneID", tempRow. ItemArray [0]. ToString (), treeElement );
This. AppendChildElement ("MetoneName", tempRow. ItemArray [1]. ToString (), treeElement );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.