All Tags »
XSLT, XPath, XML
Sorry, but there are no more tags available to filter with.
-
You can now debug an XSLT document in .NET 2.0.
You have now the XslCompiledTransform object that is used to do the transformation in .NET 2.0.
When you create your instance of the XslCompiledTransform use this constructor:
XslCompiledTransform xsl = new XslCompiledTranform(true);
Then, set a break point on the Tranform method call, when the ...
-
This is a simple sample to show you how to transform the content of an element in an XML file from lower/upper case to upper/lower case
First of all define a variable of the element as:
<xsl:variable name=''Title''>
<xsl:call-template ...