如何讓xslt樣式表接受參數(shù)
來源:易賢網(wǎng) 閱讀:628 次 日期:2014-08-20 10:10:13
溫馨提示:易賢網(wǎng)小編為您整理了“如何讓xslt樣式表接受參數(shù)”,方便廣大網(wǎng)友查閱!

我們經(jīng)常會有這樣的需求:有多份數(shù)據(jù),需要共享一份樣式表來轉換。他們的 區(qū)別可能就在于頂部會有一些小的差異,那么如何解決這個事情呢?

1. 在XSLT中定義參數(shù)

<?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="/">

<html>

<head></head>

<body>

<h1>

<xsl:value-of  select="$Title"/>

</h1>

</body>

</html>

</xsl:template>

</xsl:stylesheet>

2. 在客戶端代碼中傳遞一個參數(shù)過來

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();

}

}

}

更多信息請查看IT技術專欄

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:如何讓xslt樣式表接受參數(shù)

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)