如何从ASP参数传递给XSL?(How do I pass a parameter from ASP

2019-09-25 20:06发布

我正在写一个简单的ASP页面,显示基于XML的一些团队罗塔。 这里的XML:

<rota>
<shift date="20091201" primary="Chan" secondary="John" notes="notes"></shift>
<shift date="20091202" primary="Mike" secondary="Alex" notes="notes"></shift>
<shift date="20091203" primary="Ross" secondary="Mike" notes="notes"></shift>
<shift date="20091204" primary="Neil" secondary="Ross" notes="notes"></shift>
</rota>

我想我的asp网页中显示今天的罗塔细节和可能的细节在接下来的几天。 因为后来我想能够在指定的日期在未来,看看谁的工作旁边,我希望能够从ASP传递一个YYYYMMDD日期到处理XML的XSL。

这里的XSL我到目前为止,只突出了硬编码的“当前”日期现在:

<xsl:template match="rota">
    <html>
    <head>
        <title>Team Rota</title>
        <LINK type="text/css" rel="stylesheet" href="http://www.csfb.net/homepage/global/scripts/csfb_intranet.css"/> 
    </head>
    <body>
    <table border="1">
    <TR><TH>Date</TH><TH>Primary</TH><TH>Secondary</TH><TH>Notes</TH></TR>
    <xsl:for-each select="shift">
        <tr>
            <xsl:choose>
                <xsl:when test="@date = '20091203'">
                    <td bgcolor='FFF0F0'><xsl:value-of select="@date"/></td>
                </xsl:when>
                <xsl:otherwise>
                    <td><xsl:value-of select="@date"/></td>
                </xsl:otherwise>
            </xsl:choose>
            <td><xsl:value-of select="@primary"/></td>
            <td><xsl:value-of select="@secondary"/></td>
            <td><xsl:value-of select="@notes"/></td>
        </tr>       
    </xsl:for-each>
    </table>
    </body>
    </html>
</xsl:template>

和这里的ASP,还没有传递任何参数:

''// Load the XML
sourcefile = "rota.xml"
set source = Server.CreateObject("Microsoft.XMLDOM")
source.async = false
source.load(sourceFile)

''// Load the XSL
styleFile = Server.MapPath("rota.xsl")
set style = Server.CreateObject("Microsoft.XMLDOM")
style.async = false
style.load(styleFile)

htmltext = source.transformNode(style)
Response.Write htmltext

那么,如何一)参数传递给XSL和b)拿起该参数,并在XSL使用它?

感谢您的任何指导。

Answer 1:

在你XSL创建一个xsl:parameter在之前所有的模板顶部。

<xsl:parameter name="showdate"/>

现在,您可以像使用变量对待这样的: -

<xsl:when test="@date = $showdate">

为了在需要使用一个XSL处理器对象,它允许你处理之前将参数添加到传递参数。 反过来你从一个XSL模板对象的实例的处理器。 反过来,你需要一个FreeThreadedDOMDocument分配到模板的样式表参数。 因此,代码更复杂: -

 Dim xsl : Set xsl = CreateObject("MSXML2.FreeThreadedDOMDocument.3.0")
 xsl.async = false
 xsl.load xslFile

 Dim xml : Set xml = CreateObject("MSXML2.DOMDocument.3.0")
 xml.async = false
 xml.load sourceFile

 Dim xslTemplate : Set xslTemplate = CreateObject("MSXML2.XSLTemplate.3.0")
 xslTemplate.stylesheet = xsl;

 Dim processor : Set processor = xslTemplate.createProcessor()
 processor.addParameter "showDate", "20091203"
 processor.input = source
 processor.transform()  

 Response.Write processor.output

它的诱人分配Response对象处理器的输出参数,它工作得很好,而且更有效率。 然而MSXML的最新服务包已经作出这样与ASP的响应对象实现的IStream不兼容的技术。

所以,这就是你怎么做正式的,我是怎么做的,通常是注入到源XML的根节点一些arbitary属性然后使用一个变量: -

xml.documentElement.setAttribute("_showDate", "20091203")

现在你可以使用一个变量,而不是一个参数的主模板中: -

<xsl:template match="rota">
  <xsl:variable name="showdate" select="@_showDate" />
    <html> ...
         <xsl:when test="@date = $showdate">

在这种方法中,你可以使用你已经在使用它更简单的变换代码。



Answer 2:

你应该申报的参数如下:

<xsl:stylesheet ... >
  <xsl:parameter name="your_parameter"/>
  <xsl:template match="rota">
      $your_parameter = <xsl:value-of select="$your_parameter" />
  ...

并把它传递这样

'// Load the XSL
styleFile = Server.MapPath("rota.xsl")
set style = Server.CreateObject("MSXML2.FreeThreadedDOMDocument.3.0")
style.async = false
style.load(styleFile)

Set template = Server.CreateObject("MSXML2.XSLTemplate.3.0")
template.stylesheet = style

Set processor = myTemplate.createProcessor()
processor.addParameter "your_parameter", "value"
processor.input = source
processor.output = Response
processor.transform()


文章来源: How do I pass a parameter from ASP to XSL?