XmlDocument doc = new XmlDocument();
for (int i = 0; i < 13;i++ )
{
doc.AppendChild(doc.CreateElement(string.Format("Info{0}",i)));
}
Response.Write(doc.InnerXml);
xml有且只能有一个根节点 把doc.AppendChild(Element);改成doc.DocumentElement.AppendChild(Element)
1 XmlDocument doc = new XmlDocument(); 2 doc.AppendChild(doc.CreateElement("root")); 3 for (int i = 0; i < 13; i++) 4 { 5 doc.DocumentElement.AppendChild(doc.CreateElement(string.Format("Info{0}", i))); 6 }
楼上正解