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]

question about implements-prefix


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@test.com"
                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@hotmail.com

 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]