<%@page import="com.conn.DbConnect"%> <%@page import="com.entity.CustomerDtls"%> <%@page import="java.util.List"%> <%@page import="com.dao.CustomerDAOImpl"%> <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> Insert title here <%@include file="allCss.jsp"%> <%@include file="nav.jsp"%> <% String msg = request.getParameter("msg"); if ("deleted".equals(msg)) { %> <% } %>

All Customers


<% CustomerDAOImpl dao = new CustomerDAOImpl(DbConnect.getConn()); List list = dao.getViewCustomer(); for (CustomerDtls n : list) { %> <% } %>
Customer Name Contact Email Id Address City State Delete
<%=n.getCustomername()%> <%=n.getContact()%> <%=n.getEmail()%> <%=n.getAddress()%> <%=n.getCity()%> <%=n.getState()%> Remove