I want to load an xml file from webservice and xslt file from my project. And then translate xml and want to use xml value as .Net Object.
In this sample xml, I want birthTime as the .net String object.I want to translate this xml by my xslt file and want to get data from object.
<Patient>
<birthTime>John</birthTime>
<ageInWeeks>Doe</ageInWeeks>
<Patient>
Any Idea?
XmlTextWriter writer = new XmlTextWriter("VMR.html", null);
myXslTransform.Load("http://localhost:15408/DAL/VMRLoader.xslt");
myXslTransform.Transform(myXPathDocument, null, writer);
View Complete Post