What is this? From this page you can use the Social Web links to save Ejemplo de XML y XSL to a social bookmarking site, or the E-mail form to send a link via e-mail.

Social Web

E-mail

E-mail It
June 03, 2009

Ejemplo de XML y XSL

Posted in: Xml

tenemos el siguiente XML

<REGISTRO>  <DATOS>  <NOMBRE>JUAN</NOMBRE>  <DIRECCION>MANUEL</DIRECCION>  </DATOS> </REGISTRO>

y lo queremos mostrar en una tabla de un XSL

<table>
<tr>
<th width=”150″>Nombre</th>
<th width=”210″>Direccion</th>
</tr>
<xsl:for-each select=”/REGISTRO/DATOS”>
<tr>
<td><xsl:value-of select=”NOMBRE”/> </td>
<td><xsl:value-of select=”DIRECCION”/> </td>
</tr>
</xsl:for-each>
</table>


Return to: Ejemplo de XML y XSL

//