How to upload XML file and generate Html file without XSLT file using C#...
2 Answers
The question is a little open-ended, but you might consider just writing a program that:
- Deserializes the XML.
- Having read in the XML, format the text.
- Output the text using the standard in/out libraries in C#.
I don't know if this is the most efficient solution -- but I think it would work.