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]

To pass parameters to function


Hi.
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)"/>

but MSXML3 give me this error

	VBScript Run-Time error
	Wrong number of arguments or invalid property setting 

If I try following, works

	<xsl:value-of select="xsl:alignLeft('XXXXX',10)"/>

I think to wrong use of xsl:variable.
Who help me?

Bye, Nicola

--
TiscaliNet, libero accesso ad Internet.
http://www.tiscalinet.it


 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]