This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hello, i cant help myself but i think XSLT is quite difficult , isnt it? I am just searching for a possebility to compare to int <xsl:variable name="pattern">1</xsl:variable> <xsl:variable name="pattern2">2</xsl:variable>
<xsl:if $pattern="$pattern2">isnt doing what i want , boolean and xsl:when also not it cant be too difficult i think, i just want to compare to values .. Thx, Holger
Ajith Kallambella M. Sun Certified Programmer for the Java2 Platform.
Open Group Certified Distinguished IT Architect. Open Group Certified Master IT Architect. Sun Certified Architect (SCEA).
Holger Prause
Ranch Hand
Joined: Oct 09, 2000
Posts: 47
posted
0
yes it helped me,
p.s strange syntax i think ...
but thx, its workin now
Holger
Chris McGuirk
Greenhorn
Joined: Jan 16, 2001
Posts: 7
posted
0
The syntax isn't strange, <xsl:if $pattern=$pattern2> is not a well formed XML element, but <xsl:if test="$pattern=$pattern2"> is . XSL is built on XML.