We often have this requirement: there are multiple copies of data that need to be shared in a stylesheet to convert. The difference may be that there are some small differences at the top, so how do you solve it?
1. Define parameters in XSLT
<?xml version="1.0" encoding="utf- 8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
<xsl:output method="xml" indent="yes"/>
<xsl:param name="Title"></xsl:param>
<xsl:template match="/">
<body>
<xsl:value-of select="$Title"/>
</body>
</xsl:template>
</xsl:stylesheet>
2. Pass a parameter in the client code come on.
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Xsl;
using System.Xml.XPath;
using System.Xml;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml ("<Tables><Table><Name>Orders</Name></T able></Tables>");
XslCompiledTransform tran = new XslCompiledTransform();
tran.Load("Test.xslt");
XsltArgumentList a = new XsltArgumentList ();
a.AddParam("Title", string.Empty, "陈希章的报告");
FileStream stream = new FileStream ("Test.htm", FileMode.Create);
tran.Transform(doc.CreateNavigator(), a, stream);
stream.Close();
}
}
}