vote up 3 vote down star

I want to apply an XSLT Stylesheet to an XML Document using C# and write the output to a File.

Edit:

@Rob Cooper: Yes, I am aware of that. But I couldn't find it in SO. The Idea of this site is to collect answers to any question a developer could have, right? I had this question today and thus posted an answer. Next time I look (this is not the first time I forgot the actual classes to use) I will know where to find the answer - StackOverflow.

Is this clogging up? I don't really think so...

flag

closed as not programming related by Daren Thomas Sep 12 '08 at 11:58

2 Answers

vote up 3 vote down

I found a possible answer here: http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=63

From the article:

XPathDocument myXPathDoc = new XPathDocument(myXmlFile) ;
XslTransform myXslTrans = new XslTransform() ;
myXslTrans.Load(myStyleSheet);
XmlTextWriter myWriter = new XmlTextWriter("result.html",null) ;
myXslTrans.Transform(myXPathDoc,null,myWriter) ;

Edit:

But my trusty compiler says, XslTransform is obsolete: Use XslCompiledTransform instead:

XPathDocument myXPathDoc = new XPathDocument(myXmlFile) ;
XslCompiledTransform myXslTrans = new XslCompiledTransform();
myXslTrans.Load(myStyleSheet);
XmlTextWriter myWriter = new XmlTextWriter("result.html",null);
myXslTrans.Transform(myXPathDoc,null,myWriter);
link|flag
vote up -1 vote down

There's a huge amount of tutorials on how to do this on the Internet, you have proved this by by posting a response in under 10 seconds to your question..

Please refrain from asking questions unless you actually have a problem (e.g. "I am trying to apply XSLT and this is happening" etc.)

This just clutters StackOverflow unnecessarily.

Edit

I believe it does, since you now have a question that cannot/doesn't need be answered and must wait to be closed by a higher-ranking member. Also, by definition, the question never really existed because you already knew the answer.

I agree that StackOverflow should become a resource, a library of information, but it should be built on objective questions with meaningful answers, not just a posting board for Google links IMHO.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.