%@ page import = "NWConnection" %>
Product List using JSP
Product List
<% if (request.getParameter("category") != null) {
String [] products =
conn.getCategoryProducts(request.getParameter("category"));
%>
Products in the <%= request.getParameter("category") %> category
<% for (int i = 0; i < products.length; i++) { %>
- <%= products[i] %>
<% } %>
<% } %>