How to convert XML to HTML using c# dynamically
H开发者_StackOverflow社区ow to upload XML file and generate Html file without XSLT file using C#...
LINQ to XML is one option. See also: Generating HTML using LINQ
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.
精彩评论