So, I am working with .NET. I have an XSL file, XslTransform object in C# that reads in the XSL file and transforms a piece of XML data (manufactured in-house) into HTML.
I notice that my final output has < and > automatically encoded into < and >. Is there any ways I can prevent that from happening? Sometimes I need to bold or i...
XslTransform appears to have been deprecated by Microsoft in favor of XslCompiledTransform. Theoretically, if I was doing just one transform during the execution of my application, shouldn't interpreting the XSLT (through XslTransform) be faster than compiling it? If so, is XslTransform written so badly that the improvements made to X...
I'm trying to write an XSLT that will transform an XML document that I have to a CSV file. Here's a sample of the XML:
<?xml version="1.0" encoding="utf-8"?>
<Import>
<Users>
<User ID="user_1" EmailAddress="[email protected]">
<Contact FirstName="John" LastName="Doe" />
<Address Street1="808 El...
Dear All,
Can one write the results of a XSLTransform.Transform to a memorystream instead of a XMLTextWriter object?
I need to be able to send the results of my transform over the wire to a webbrowser, so writing it to a file on disk on the server is no good.
Tony
...
I know about Console.SetOut, but can't figure out what I should pass to this method.
...
Hi, i'm using XsltArgumentList.AddExtensionObject with sucess.
The problem is when i call the functions from the xslt, they only get the arguments i pass.
How can i get the context (what node is being processed).
I am using XslTransform.Transform (myXPathDoc, xslArgs, myWriter); to start the transformation..
I heard about SetContext an...