This is the XML i am creating in javacript
I am sending this to an aspx page and doing the following things
XmlDocument objXmlDoc = new XmlDocument(); Request.InputStream.Position = 0; objXmlDoc.Load(Request.InputStream); objXmlDoc.Save("MyXML.xml");
It is showing an exception "root elemenet missing"
Is my XML not well formed ? I have a valid root element. Na ?