| |
Prospective Student Gateway
Our Students
CMC Fact Sheet
Statistical information about CMC and the student body.
Student Profiles
<%
connection = dbConnect("MSD2", "WebSiteData")
if connection then
strSql = "SELECT * FROM StudentProfiles ORDER BY LastName, FirstName, Classyear"
set rst = cnn.execute(strSql)
while not rst.eof
LastName = rst("LastName")
FirstName = rst("FirstName")
ClassYear = rst("ClassYear")
Hometown = rst("Hometown")
Major = rst("Major")
Activities = rst("Activities")
Quote = rst("Quote")
ImgName = rst("ImgName")
%>

<%= FirstName %> <%= LastName %>, CMC Class of <%= ClassYear %>
Hometown: <%= Hometown %>
Major: <%= Major %>
Activities: <%= Activities %>
Quote: "<%= Quote %>"
<%
rst.movenext
wend
else
response.write dbConnectionError()
end if
%>
|