<%@ Language=VBScript %> COEN120 Student Roster <% Set DB = Server.CreateObject("ADODB.connection") DB.Open "COEN120StudentsSpring2004", "ENGR019Students", "ENGR019Students" SearchString = "SELECT * FROM q_AllStudentData ORDER BY LogName" ' response.write SearchString & "
" Set DB_Results = DB.Execute(SearchString) %>
COEN120 Student Roster

<% while not DB_Results.eof %> <% DB_Results.MoveNext wend %>

LogName

First Name

Last Name

Lab Section

Final Section

<%=DB_Results("LogName")%>

<%=DB_Results("FirstName")%>

<%=DB_Results("LastName")%>

<%=DB_Results("Lab")%>

<%=DB_Results("Final")%>

<% DB_Results.MoveFirst %> <% while not DB_Results.eof %> <% if DB_Results("email") <> "" then %> <% else %> <% end if %> <% DB_Results.MoveNext wend %>

E-Mail

<%=DB_Results("email")%>