Componentes.Terceros.jvcl/internal/3.36/1/examples/JvXMLDatabase/Documents/loans.xhs
2009-03-04 12:31:55 +00:00

31 lines
458 B
Plaintext

<%
Include("intro.inc");
%>
Loans:
<p />
<div class="Data">
<table class="Data">
<tr>
<th>Date of loan</th>
<th>Return date</th>
<th>Loaner</th>
</tr>
<%
Request("SELECT * FROM loans.xml, clients.xml
WHERE (LoanClient = ClientId)
ORDER BY LoanDeparture DESC ");
Display("templates/loansmanage.tpl");
DisplayEmpty("templates/boxtocomeempty.tpl");
%>
</table>
</div>
<p />
<%
Include("outro.inc");
%>