Harvard Club of Boston



























Newsletters

 

<%@ page import = "com.embarcgroup.common.*,java.lang.*,java.io.*,java.util.*,java.sql.*,java.net.URLEncoder" %> <%@include file="/site/includes/db.jsp"%> <%! String sectionVar = "members_only"; String pageVar = "newsletters"; String subSectionVar = ""; String headerVar = ""; %> Newsletters <%@include file="/site/includes/startpage.jsp"%> <%! public static String encodeApostrophy(String url){ String returnString= new String(); char[] charArray=url.toCharArray(); for (int i=0; i

The Bulletin

<% PooledDataSource pds = new PooledDataSource("harvardclub"); pds.open(); try { String sql = "select * from NewsLetters order by NewsDate desc"; // create statement to handle SQL rs = pds.getResultSet(sql); while (rs.next()) { out.print("

" + rs.getString("Title") + "
" + rs.getString("Subtitle") + "
"); out.print(""); out.print("\"\" " + rs.getString("PDF") + "

"); } rs.close(); } catch (Exception e) { out.print(e); } finally { pds.close(); } %> <%@include file="/site/includes/endpage.jsp"%>