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

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <HTML>
  3. <HEAD><TITLE>Company Policies</TITLE></HEAD>
  4. <BODY>
  5. <%@ include file="CompanyBanner.html" %>
  6. <%@ page import="java.sql.*" %>
  7. <%@ page import="humanresource.*" %>
  8. <CENTER>
  9.   <FONT SIZE="5" COLOR="navy">
  10.     Company Policies
  11.   </FONT>
  12. </CENTER>
  13. <!-- Company policy -->
  14. <FONT SIZE="4">
  15.   Our number one company policy at Husky World is to
  16.   be nice to your fellow co-workers. And always be nice
  17.   to doggies.
  18. </FONT>
  19. <BR>
  20. <CENTER>
  21.   <FONT SIZE="5" COLOR="navy">
  22.     Health, Vision, And Dental Plans
  23.   </FONT>
  24. </CENTER>
  25. <TABLE WIDTH="100%">
  26.   <TH WIDTH="40%">Plan Name</TH>
  27.   <TH WIDTH="20%">Deductible</TH>
  28.   <TH WIDTH="20%">Coverage for Doctors in Plan</TH>
  29.   <TH WIDTH="20%">Coverage for Doctors out of Plan</TH>
  30. <%
  31.   EmployeeInfoBean beanObj=new EmployeeInfoBean();
  32.   ResultSet rs1=beanObj.queryComPolicy();
  33.   System.out.println(beanObj.queryComPolicy());
  34.   while (rs1.next()){
  35. %>
  36.   <TR><TD><%= rs1.getString("PLANNAME") %></TD>
  37.       <TD><%= rs1.getString("DEDUCTIBLE") %></TD>
  38.       <TD><%= rs1.getString("DOCTORSINPLANCOVERAGE") %></TD>
  39.       <TD><%= rs1.getString("DOCTORSOUTOFPLANCOVERAGE") %></TD>
  40.   </TR>
  41. <% } //end while loop
  42. /*   if (statement != null)
  43.      statement.close();
  44.    if (conn != null)
  45.      conn.close();*/
  46. %>
  47. </TABLE>
  48. <BR>
  49. <%@ include file="SiteNavigator.html" %>
  50. </BODY>
  51. </HTML>