views:

177

answers:

2
+1  Q: 

XSLT for .NET CF?

Hi,

Is there any XSLT library available for the Windows Mobile platform? I need to transform my XML document to HTML. It can be a plus if compatible with .NET CF.

Thanks, Ben

A: 

The XslCompiledTransform should be supported in the .NET CF.

EDIT

Apparently XslCompiledTransform is not supported on any mobile platform for the .NET CF.

Maybe System.Xml.Linq.XDocument and related classes are suitable for your needs. They are supported in .NET CF 3.5 on Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC.

Filburt
A: 

Yes, see blog post from August 2006. OpenNETCF.

0A0D