PresentCompanyPolicies.jsp
上传用户: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%" BORDER="1">
  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.   while (rs1.next()){
  34. %>
  35.   <TR><TD><%= rs1.getString("PLANNAME") %></TD>
  36.       <TD><%= rs1.getString("DEDUCTIBLE") %></TD>
  37.       <TD><%= rs1.getString("PlanCoverage1") %></TD>
  38.       <TD><%= rs1.getString("PlanCoverage2") %></TD>
  39.   </TR>
  40. <% } //end while loop
  41. /*   if (statement != null)
  42.      statement.close();
  43.    if (conn != null)
  44.      conn.close();*/
  45. %>
  46. </TABLE>
  47. <BR>
  48. <%@ include file="SiteNavigator.html" %>
  49. </BODY>
  50. </HTML>