XSLTGeneral questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
"using VS 2008" does not tell us which XSLT processor you use, unless you are running the stylesheets directly in the Visual Studio IDE and in that case the solution suggested earlier with exsl:node-set should work.
So what exactly are you doing when you say "using VS 2008"? Do you use .NET code with System.Xml.Xsl.XslCompiledTransform?
__________________
Martin Honnen
Microsoft MVP (XML, Data Platform Development) 2005/04 - 2013/03 My blog
The Following User Says Thank You to Martin Honnen For This Useful Post:
I've done it! I've been using XslTransform() instead of XslCompiledTransform(), and it was the reason exsl:node-set hasn't work. Now everything works fine! Many thanks Martin for helping me!
Last edited by patrickero; March 16th, 2010 at 04:55 AM..