Click here to Skip to main content
15,889,216 members

Comments by Muhammad Islam Manzoor (Top 11 by date)

Muhammad Islam Manzoor 17-Feb-17 2:32am View    
Any updates?
Muhammad Islam Manzoor 16-Feb-17 6:56am View    
For the link provided by you its only for one column reading. i need to read the data from two columns and from multiple rows i mean to say the combination of username and password from two column and after that shifting towards next combination that is a new row after that i would like to store them in separate variables.
Muhammad Islam Manzoor 24-May-16 0:37am View    
Thank it works.
Muhammad Islam Manzoor 24-May-16 0:37am View    
Thanks it works.
Muhammad Islam Manzoor 23-May-16 6:32am View    
That did not worked. I am still not able to read and write from CDATA. I have tried below. But i am getting error message for childnode.

string strPath = @"E:/Test/ReadXMLfromFile/GETCIL_Response.xml";
XmlDocument doc = new XmlDocument();
doc.Load(strPath);
XmlNodeList node = doc.SelectNodes("//param_list[@name=\"SegmentName\"]/value");
if (childNode is XmlCDataSection)
{
XmlCDataSection cdataSection = childNode as XmlCDataSection;
Console.WriteLine(cdataSection.Value);
}
Console.ReadLine();