views:

154

answers:

1

We've got a .net CMS running on IIS 6 which uses xslt templates. It seems to be running xpath 1.0 (as we can't use any 2.0 functionality).

How do we go about installing or specifying that IIS should use xpath 2.0? Is it installed per server, or can we specify which version to use on a per-application pool or per-site basis?

Thanks a lot!

+1  A: 

As far as I can tell (I haven't seen any definitive source on this), .NET doesn't have any support for XPath 2.0. I've read things that suggest its so, but I can't get any 2.0 XPath functions to run without providing custom function definitions.

You can use an external library to get 2.0 compatability, however.

Will