Componentes.Terceros.jvcl/official/3.36/examples/JvXMLDatabase/Documents/items.xhs
2009-02-27 12:23:32 +00:00

33 lines
451 B
Plaintext

<%
Include("intro.inc");
%>
Medical instruments:
<p />
<div class="Data">
<table class="Data">
<tr>
<th>Name</th>
<th>Category</th>
<th>Serial</th>
</tr>
<%
Request("SELECT * FROM items.xml, categories.xml
WHERE (ItemCat = CatId)
ORDER BY ItemName ");
Display("templates/itemmanage.tpl");
DisplayEmpty("templates/boxtocomeempty.tpl");
%>
</table>
</div>
<p />
<%
Include("outro.inc");
%>