I have a .NET based application that receives an incoming XML file. I would like to convert an XML file to HTML using the XSL stylesheet that I have. This is my process ...
- Read the submitted XML file from the file system
- Apply XSL to XML for conversion
- Print final HTML for display in HTML format
Does anyone have sample code that demonstrates how to do this? Thank.
source
share