Hi,
I am writing some data to a particular xml file .There is one element for which the attribute value contains & ,
eg :
XmlAttribute value=doc.CreateAttribute("Value");
Element1.SetAttributeNode(Value1);
Value1.Value=""";
Output: <Element1 Value="&quot;">
What is the escape sequence for printing an & in an xml file ??