%@ page import="java.util.*" %>
| Search |
| Categories: |
|
<%
Hashtable categories = dbBean.getCategories();
Enumeration categoryIds = categories.keys();
while (categoryIds.hasMoreElements()) {
Object categoryId = categoryIds.nextElement();
out.println("" +
categories.get(categoryId) +
" "); } %> |