tags:

views:

50

answers:

2

I'd like people's opinion on the "best" XSLT processor for .NET, but what are the good options for processing XSLT in .NET? What do you use and how well does it serve you?

+2  A: 

I just use .NET's own XslCompiledTransform. Works fine. Never considered finding a different one.

AnthonyWJones
As I understand it, that's an implementation of XPath1.0 and doesn't have some of the much improved functions of XPath2.0..? http://www.xml.com/pub/a/2002/03/20/xpath2.html
Matt W
@Matt: Its always a good idea to include in your question such details as "I want to use XPath 2.0" features.
AnthonyWJones
A: 

If you want XSLT 2.0 then your best bet is probably Saxon. It's written by Michael Kay, who was editor of the XSLT 2.0 specification and was joint editor of the XPath 2.0 specification.

NickFitz