[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Another question!!
> The question is if anybodu knows if this "varde" is possible > to use in later on > in the xsl page or if this is a not god approach! > I have tried to access it wit something like this > <xsl:value-of select="@varde"/> The way to pass down information is by using parameters or variables, which you can read about in §11 in the XSLT specification. Define <xsl:param name="varde" select="'temp'/>. It is then referenced as <xsl:value-of select="$varde"/> By using xsl:param you can override the default value from the command line (XT and Saxon). xsl:variable cannot be overridden. -- Thorbjørn XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|