Implementing extension methods to XSLT in .Net
Most XSLT processors contain methods to call custom methods (known as extension methods) written in your favourite programming language. Java XSLT processors allow you to write them in Java, and the old MSXML processor allowed you to write the in VBScript or Javascript.
The new .Net Framework classes XslTransform (or more recently XslCompiledTransform) allows you to [...]