This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

xsl:param and MSXML


Hi,
I want to read a parameter from the URL and use it in my stylesheet as
displayed below

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
<xsl:param name="element"/>

<xsl:template match="/">
	<xsl:apply-templates select="/content/*[name()=$element]"
mode="wysiwyg"/>
</xsl:template>

<xsl:template match="element1">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="element2">
	<xsl:copy-of select="."/>
</xsl:template>

</xsl:stylesheet>

I was using a cocoon parser to parse by XSL and my code worked fine but
then had to change to use MSXML.  

Can anyone tell me how to implement it so that it will work with MSXML.

Thanks,
Aedemar

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]