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);
}