<%@ page import = "NWConnection" %> Product List using JSP

Product List

Categories
<% 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++) { %>
  1. <%= products[i] %> <% } %>
<% } %>