aneeshmm 0 Newbie Poster

i use the following code to write sql data to xml file.

SqlDataAdapter ad = new SqlDataAdapter("SELECT	name AS [@label],	salary AS [@value] FROM	Employee FOR XML	PATH('set'),ROOT('chart')", cnn);
        cnn.Close();
        DataSet ds = new DataSet("chart");
        ad.Fill(ds,"set");        
        XmlDataDocument doc = new XmlDataDocument(ds);
        doc.Save(Server.MapPath(Request.ApplicationPath)+"\\t.xml");

i get the file as

<chart>
<set>
<xml>
<chart>
<set label=""abcd value="abcd" />
</chart>
</xml>
</set>
</chart>

i want to remove the first three tags; ie, <chart>,<set> and <xml>
any suggestions????
thnx in advance

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.