Subject: question about implements-prefix
From: "Todd Binder" <todd_binder@xxxxxxxxxxx>
Date: Thu, 6 Dec 2001 11:31:49 -0500
|
what purpose does the USER serve in the below code? i know that it has to
be included, but am not sure of what it's use (if any) is.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:user="tbinder@xxxxxxxx"
version="1.0">
<msxsl:script language="VBScript" implements-prefix="user">
function formatArg(idate)
formatArg = ucase(idate)
end function
</msxsl:script>
<xsl:template match="testcode">
<xsl:value-of select="user:formatArg(date)"/>
</xsl:template>
</xsl:stylesheet>
- Todd
Todd Binder
todd_binder@xxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|