1
Reply

XmlDocumnet

Smart    Lucky

Smart Lucky

Aug 10 2011 2:18 AM
1.5k
Hi

How can i read attributes and CDATA using  XmlDocument doc = new XmlDocument();............................?

and i am trying in this way but all attributes are not showing....can any one hle me


 XmlAttributeCollection attrubutes = doc.Attributes;
        Response.Write("<br/>Attrubu<br/>");
        for (int i = 0; i < attrubutes.Count; i++)
        {
            Response.Write(attrubutes[i].InnerText);
        }

Answers (1)