http://www.xbase.com.mx/ejemplos/clientes.xba
Por lo que nuestro código en clientes.xba contendrá lo siguiente:
** clientes.xba
<html>
<head>
<title>Mostrando la tabla clientes.dbf</title>
</head>
<body>
<table>
<tr>
<th>Nombre</th>
<th>Apellido</th>
</tr>
<?
set defa to c:\data
use clientes
do while not eof()
<tr>
<td><<nombre>></td>
<td><<apellido>></td>
</tr>
skip
enddo
?>
</body>
</html>
No hay comentarios.:
Publicar un comentario