Re: [xsl] No of Times Named Template called

Subject: Re: [xsl] No of Times Named Template called
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Thu, 13 Mar 2008 19:27:52 +0100
Senthilkumaravelan K wrote:

<xsl:variable name="result">
     <xsl:for-each select="report/result">
<xsl:if test="normalize-space(resp/fault)=normalize-space(exp_resp/fault)">
        <xsl:call-template name="STATUS_DETECTION">
           <xsl:with-param name="my-param" select="S" />

What do you want to pass here as the parameter value? If you want to pass the string with the character 'S' then you need
<xsl:with-param name="my-param" select="'S'"/>


--

	Martin Honnen
	http://JavaScript.FAQTs.com/

Current Thread