问题
i am using visual studio 2010 . when running xslt2.0 in that getting below errors
xsl:value-of/* ** is not yet implemented.
'xsl:result-document'** is not yet implemented.
can any one help me to reslove the above issues
回答1:
If you want to use XSLT 2.0 you need to switch from XslCompiledTransform to an XSLT 2.0 processor like the .NET version of Saxon 9 or like AltovaXML or like XmlPrime. Microsoft's XslCompiledTransform is an XSLT 1.0 processor, even in .NET 4.5/VS 2012.
However the named XSLT processors mainly allow you to write code using XSLT 2.0, I don't think they integrate in VS 2010.
来源:https://stackoverflow.com/questions/15783808/visual-studio-not-supporting-xslt-2-0