G
Guest
I am working on generating xml file from dataset using the following statement
datasetName.WriteXml("c:\\dotnet\\cs\\notifyMessageTest.txt", XmlWriteMode.IgnoreSchema);
...Net generates <?xml version="1.0" standalone="yes"?> as the first line.
Is there any smart way to get rid of this line because the third party
package cannot process xml file with this line. They do not use schema.
thanks in advance
datasetName.WriteXml("c:\\dotnet\\cs\\notifyMessageTest.txt", XmlWriteMode.IgnoreSchema);
...Net generates <?xml version="1.0" standalone="yes"?> as the first line.
Is there any smart way to get rid of this line because the third party
package cannot process xml file with this line. They do not use schema.
thanks in advance