I am expecting an xml as output when execute the following
XElement Root = XElement.Load(@"d:\xmlfiles\Customers.xml");
XElement BringContact = Root.Element("Contact");
Response.Write(BringContact);
as
<Contact>
<Company>Alfreds Futterkiste</Company>
<City>Berlin</City>
</Contact>
But the Response.Write() displays values only as
Alfreds Futterkiste Berlin
What is the code change do i need?