XML file write: Indent, indent char, and Omit Xml Declaration : XML File Save « XML « ASP.Net






XML file write: Indent, indent char, and Omit Xml Declaration

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Xml" %>

<script runat="server">
    void Page_Load(object sender, EventArgs e)
    {        
        string xmlFilePath = MapPath("EmployeesNew.xml");            
        //string xmlFilePath = @"C:\Data\Employees.xml";            
        try
        {
            XmlWriterSettings settings = new XmlWriterSettings();
            settings.Indent = true;            
            settings.ConformanceLevel = ConformanceLevel.Auto;
            settings.IndentChars = "\t";
            settings.OmitXmlDeclaration = false;
            using (XmlWriter writer = XmlWriter.Create(xmlFilePath, settings))
            {
                writer.WriteStartDocument(false);                
                writer.WriteStartElement("employees");                    
                    writer.WriteStartElement("employee");
                    writer.WriteAttributeString("id", "1");
                        writer.WriteStartElement("name");
                            writer.WriteElementString("firstName", "Nancy");
                            writer.WriteElementString("lastName", "Lee");
                        writer.WriteEndElement();
                        writer.WriteElementString("city", "Seattle");
                        writer.WriteElementString("state", "WA");
                        writer.WriteElementString("zipCode", "98122");                                    
                    writer.WriteEndElement();
                writer.WriteEndElement();
                writer.WriteEndDocument();
                //Flush the object and write the XML data to the file
                writer.Flush();
                lblResult.Text = "File is written successfully";
            }
        }       
        catch (Exception ex)
        {
            lblResult.Text = "An Exception occurred: " + ex.Message;
        }        
    }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Writing XML File with XmlWriterSettings</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:label id="lblResult" runat="server" />
    </div>
    </form>
</body>
</html>

           
       








Related examples in the same category

1.Save updated XML data set to new XML file
2.Save XML data to String Writer
3.Load XML from String and write to file
4.XML File write: element, comments
5.Write XML File with namespace