PresentCompanyHealthCareInfo.jsp
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <HTML>
  3. <HEAD><TITLE>Health Plan Information</TITLE></HEAD>
  4. <BODY>
  5. <%@ include file="CompanyBanner.html" %>
  6. <%@ page import="java.sql.*" %>
  7. <%@ page import="humanresource.EmployeeInfoBean" %>
  8. <CENTER>
  9.   <FONT SIZE="5" COLOR="navy">
  10.     Health, Vision, And Dental Plans
  11.   </FONT>
  12. </CENTER>
  13. <TABLE WIDTH="100%" BORDER="1">
  14.   <TH WIDTH="40%">Plan Name</TH>
  15.   <TH WIDTH="20%">Deductible</TH>
  16.   <TH WIDTH="20%">Coverage for Doctors in Plan</TH>
  17.   <TH WIDTH="20%">Coverage for Doctors out of Plan</TH>
  18. <%
  19.  /* Class.forName("COM.cloudscape.core.JDBCDriver").newInstance();
  20.   Connection conn =
  21.     DriverManager.getConnection("jdbc:cloudscape:c:\HumanResourcesDB");
  22.   Statement statement = conn.createStatement();
  23.   String sql = "SELECT * FROM BENEFITINFO";*/
  24.   EmployeeInfoBean beanObj1=new EmployeeInfoBean();
  25.   ResultSet rs = beanObj1.queryComPolicy();
  26.   while (rs.next()) {
  27. %>
  28.   <TR><TD><%= rs.getString("PLANNAME") %></TD>
  29.       <TD ALIGN="center"><%= rs.getString("DEDUCTIBLE") %></TD>
  30.       <TD ALIGN="center"><%= rs.getString("PlanCoverage1") %></TD>
  31.       <TD ALIGN="center"><%= rs.getString("PlanCoverage2") %></TD>
  32.   </TR>
  33. <% } //end while loop
  34.    /*if (statement != null)
  35.      statement.close();
  36.    if (conn != null)
  37.      conn.close();*/
  38. %>
  39. </TABLE>
  40. <BR>
  41. <%@ include file="SiteNavigator.html" %>
  42. </BODY>
  43. </HTML>