How do I get an XSLT stylesheet to accept parameters

Source: Internet
Author: User
Tags xmlns xsl xslt

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, "Chen Xizhang's report");
FileStream stream = new FileStream ("test.htm", FileMode.Create);
Tran. Transform (Doc. CreateNavigator (), A, stream);
Stream. Close ();
}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.