> <xsl:if test='not(Description = '')'>
>
> will test whether there is a Description child element which does not
> contain an empty string.
Oh no it won't. It will test whether there is not a Description element
which does contain an empty string. If there are two Description elements
one of which contains an empty string and the other of which contains
"text", then not(Description='') returns false. For the test which you
describe in English, use <xsl:if test="Description != '')">
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- RE:
- Kay Michael - Thu, 4 Nov 1999 11:50:46 -0000 <=
|
|