1

How to upload XML file and generate Html file without XSLT file using C#...

1
  • 2
    What does your XML look like? What do you want it to look like as HTML? We need more information. Commented May 5, 2011 at 15:58

2 Answers 2

3

LINQ to XML is one option. See also: Generating HTML using LINQ

Sign up to request clarification or add additional context in comments.

Comments

1

The question is a little open-ended, but you might consider just writing a program that:

  1. Deserializes the XML.
  2. Having read in the XML, format the text.
  3. 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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.