PresentCompanyPolicies.jsp~1~
上传用户: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. <CENTER>
  8.   <FONT SIZE="5" COLOR="navy">
  9.     Company Policies
  10.   </FONT>
  11. </CENTER>
  12. <!-- Company policy -->
  13. <FONT SIZE="4">
  14.   Our number one company policy at Husky World is to
  15.   be nice to your fellow co-workers. And always be nice
  16.   to doggies.
  17. </FONT>
  18. <BR>
  19. <CENTER>
  20.   <FONT SIZE="5" COLOR="navy">
  21.     Health, Vision, And Dental Plans
  22.   </FONT>
  23. </CENTER>
  24. <TABLE WIDTH="100%">
  25.   <TH WIDTH="40%">Plan Name</TH>
  26.   <TH WIDTH="20%">Deductible</TH>
  27.   <TH WIDTH="20%">Coverage for Doctors in Plan</TH>
  28.   <TH WIDTH="20%">Coverage for Doctors out of Plan</TH>
  29. <%
  30.   Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
  31.   Connection conn = DriverManager.getConnection(
  32. "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=HumanResourcesDB;User=sa;Password=sa");
  33.   Statement statement = conn.createStatement();
  34.   String sql = "SELECT * FROM BENEFITINFO";
  35.   ResultSet rs = statement.executeQuery(sql);
  36.   while (rs.next()) {
  37. %>
  38.   <TR><TD><%= rs.getString("PLANNAME") %></TD>
  39.       <TD><%= rs.getString("DEDUCTIBLE") %></TD>
  40.       <TD><%= rs.getString("DOCTORSINPLANCOVERAGE") %></TD>
  41.       <TD><%= rs.getString("DOCTORSOUTOFPLANCOVERAGE") %></TD>
  42.   </TR>
  43. <% } //end while loop
  44.    if (statement != null)
  45.      statement.close();
  46.    if (conn != null)
  47.      conn.close();
  48. %>
  49. </TABLE>
  50. <BR>
  51. <%@ include file="SiteNavigator.html" %>
  52. </BODY>
  53. </HTML>