
13/09/2007, 06:34
|
 | $moderador{'Esteban'} | | Fecha de Ingreso: febrero-2002 Ubicación: Buenos Aires - Argentina
Mensajes: 8.762
Antigüedad: 23 años, 1 mes Puntos: 90 | |
Re: Saber elemnto de XML es nulo Algo rápido que encontré en google
What do you want it do do if it DOESN'T find an empty value?
Normally <xsl:value-of select="Description"/> will achieve the required
effect.
Or try something like:
<xsl:choose>
<xsl:when test="Description">... do something ...</xsl:when>
<xsl:otherwise><!-- do nothing --></xsl:otherwise>
</xsl:choose>
Saludos
__________________ Esteban Quintana |