- Recompilación en Delphi10 de todos los paquetes de RO para generar las DCU's en Lib\D10 - Recompilación en Delphi10 de todos los paquetes de DA para generar las DCU's en Lib\D10 git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@9 b6239004-a887-0f4b-9937-50029ccdca16
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="html"/> <xsl:template match="/">
|
|
<html>
|
|
<head/>
|
|
<body>
|
|
<xsl:for-each select="XMLData/Datasets/Customers/Row">
|
|
<p> <strong>
|
|
<table width="651" border="1" style="; width: 651px; height: 27px">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <img align="baseline" src="DALogo.png" border="0" hspace="0"/>
|
|
</td>
|
|
<td width="90%"> <p>
|
|
<strong>Customer: </strong> <xsl:value-of select="@CustomerID"/>, 
|
|
<xsl:value-of select="@CompanyName"/>, 
|
|
<xsl:value-of select="@ContactName"/>, 
|
|
<xsl:value-of select="@ContactTitle"/> </p>
|
|
<p>
|
|
<strong>Address:</strong> <xsl:value-of select="@Address"/>, 
|
|
<strong> City:</strong> <xsl:value-of select="@City"/>, 
|
|
<xsl:value-of select="@Region"/>, 
|
|
<xsl:value-of select="@Country"/>, 
|
|
<xsl:value-of select="@PostalCode"/> </p>
|
|
<p>
|
|
<strong>Phone:</strong> <xsl:value-of select="@Phone"/>
|
|
<strong>Fax:</strong> <xsl:value-of select="@Fax"/>
|
|
</p></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</strong> </p> </xsl:for-each>
|
|
</body>
|
|
</html>
|
|
</xsl:template> </xsl:stylesheet> |