You have to use '=' instead of '=='(there is no such operator in XSLT); in XSLT there is no also an assignment operator, since it's almost functional programming language(once you initialize a variable, it's impossible to update its value), so you have to use '=' for comparison. (However, '=' has very interesting properties when operands are node sets.)
Regards,
Armen
|