I have been reading your paper on Tag libraries in JavaServer Pages. You
have a html database example (see below) in the pdf file. Do you have the
java implementation example to go along with this?

***************************************************************************
<html>
<%@ taglib uri="/tlds/simpleDB.tld" prefix="q" %>
<q:queryBlock connData="conData1">
<q:queryStatement>SELECT account,
balance...</q:queryStatement>
The top 10 accounts and balances are:
<table>
<tr><th>ACCOUNT</th><th>BALANCE</th></tr>
<q:queryCreateRows from="1" to="10">
<td><q:queryDisplay field="ACCOUNT"/></td>
<td><q:queryDisplay field="BALANCE"/></td>
<q:queryCreateRows>
</table>
</q:queryBlock>
</html>
**************************************************************************

Thanks,
Gary Potomic
908-679-1904
[EMAIL PROTECTED]

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to