Hi,
I am writing out the DataSet.GetXml( ) to a file as below:
Response.AddHea der ("Content-disposition", @"attachment ;
filename=Employ ee.xml");
Response.Conten tType = "applicatio n/ms-tnef";
Response.Write( dsEmployee().Ge tXml());
Response.End();
I get the XML but the problem I am having is: in a few places where I have
"Double Quotes", it is replaced with """ . How can I preserver the "Double
Quotes" in the XML I download (instead of me manually going through entire
XML and replacing ...) ?? TIA.
I am writing out the DataSet.GetXml( ) to a file as below:
Response.AddHea der ("Content-disposition", @"attachment ;
filename=Employ ee.xml");
Response.Conten tType = "applicatio n/ms-tnef";
Response.Write( dsEmployee().Ge tXml());
Response.End();
I get the XML but the problem I am having is: in a few places where I have
"Double Quotes", it is replaced with """ . How can I preserver the "Double
Quotes" in the XML I download (instead of me manually going through entire
XML and replacing ...) ?? TIA.
Comment