L
Looch
All,
I'm using the following code in a blank page:
public void Page_Load(object sender, EventArgs e)
{
...
XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(receipt.getIndividualReceipt(a, b));
}
How can I show the XML data that is in xdoc without saving the file
locally (which I'm not sure is even possible) and opening it?
Thanks in advance.
I'm using the following code in a blank page:
public void Page_Load(object sender, EventArgs e)
{
...
XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(receipt.getIndividualReceipt(a, b));
}
How can I show the XML data that is in xdoc without saving the file
locally (which I'm not sure is even possible) and opening it?
Thanks in advance.