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

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. /*  Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
  32.   Connection conn = DriverManager.getConnection(
  33. "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=HumanResourcesDB;User=sa;Password=sa");
  34.   Statement statement = conn.createStatement();
  35.   String sql = "SELECT * FROM BENEFITINFO";
  36.   ResultSet rs = statement.executeQuery(sql);*/
  37. //  ResultSet rs=beanObj.q
  38.   EmployeeInfoBean beanObj=new EmployeeInfoBean();
  39.   ResultSet rs1=beanObj.queryComPolicy();
  40.   while (rs1.next()){
  41. %>
  42.   <TR><TD><%= rs1.getString("PLANNAME") %></TD>
  43.       <TD><%= rs1.getString("DEDUCTIBLE") %></TD>
  44.       <TD><%= rs1.getString("DOCTORSINPLANCOVERAGE") %></TD>
  45.       <TD><%= rs1.getString("DOCTORSOUTOFPLANCOVERAGE") %></TD>
  46.   </TR>
  47. <% } //end while loop
  48. /*   if (statement != null)
  49.      statement.close();
  50.    if (conn != null)
  51.      conn.close();*/
  52. %>
  53. </TABLE>
  54. <BR>
  55. <%@ include file="SiteNavigator.html" %>
  56. </BODY>
  57. </HTML>