<% String pageNames = request.getParameter("path"); if ( pageNames == null ) { pageNames = "default_program.htm"; } else { pageNames = pageNames + ".htm"; } %>
 
By Specialty
Family Medicine
By University
 
<% String jspPath = application.getRealPath("jsp")+"/"+pageNames; java.io.File jspFile = new java.io.File(jspPath); if ( (! pageNames.equals("default_program.htm")) && (jspFile.exists())) { java.util.Date lastModified = new java.util.Date(jspFile.lastModified()); java.text.SimpleDateFormat fmt = new java.text.SimpleDateFormat("MMMMM dd, yyyy"); out.println("This page was revised on " + fmt.format(lastModified) ); } else { out.println(" "); } %>