<%@page contentType="text/vnd.wap.wml" session="true" import="java.util.Vector"%> <% /* This JSP functions in a manner similar to the ClientListJSP. Each item name is a link to the PlaceOrderJSP. Each link contains the index of the item within the item list array that the salesman wishes to order for the client. */ Vector itemInfo[]; itemInfo = (Vector[])session.getAttribute("ItemList"); %>

<% //Display Client names from cinfo[] if((itemInfo.length <= 0) || (itemInfo == null)) %> There Are No Items To Display <% else { for(int i=0;i
<%=itemInfo[i].get(1)%> <% } } %>