1.

Error illegal characters in path while reading xml from dataset

Answer»

To REMOVE this error we use below code and it will simply remove the error

StringReader SR = NEW StringReader(XML);
DataSet ds = new DataSet();
ds.ReadXml(sr);



Discussion

No Comment Found