Subject: RE: To pass parameters to function
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Thu, 15 Feb 2001 13:31:15 -0000
|
> I'm tring to pass two params to this function
>
> function alignLeft(sValue,nSpaces)
> alignLeft=left(sValue+space(nSpaces),nSpaces)
> end function
>
> in this way
>
> <xsl:variable name="sVal" select='XXXXX'/>
> <xsl:value-of select="xsl:alignLeft($sVal,10)"/>
Use select="'XXXXX'" if you want to pass a string; otherwise you are passing
a node-set containing the child elements named XXXXX.
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|