<%@ LANGUAGE="VBSCRIPT" %> Student Information These records will be removed from the directory

<% NameToLookup = Request.Form("DELETENAME") Set SurveyDB=Server.CreateObject("ADODB.Connection") SurveyDB.Open sDSN, optimistic InqSQL = "SELECT * FROM Students WHERE Name ='" & NameToLookup & "';" set RS = SurveyDB.Execute(InqSQL) %> <% While NOT RS.EOF %> <% RS.MoveNext %> <% wend %> <% SurveyDB.Close %>
Student NameEmail Address
<% =RS("Name") %>   "><% =RS("Email") %> 


Are you sure that you want to delete the displayed record?

Return to Main Page