Name | Email address | URL on SWS server | Action |
Jones, John | jjones@any.net | sws.csudh.edu/jjones/ | Delete |
Smith, Bob | bsmith@any.com | sws.csudh.edu/bsmith/ | Delete |
Name | ") Response.Write("Email address | ") Response.Write("URL on SWS server | ") Response.Write("Action | ") Response.Write("
") Response.Write(strTemp) Response.Write(" | ") 'email address strTemp = "" & rsRoster.Fields("Email") & "" Response.Write("") Response.Write(strTemp) Response.Write(" | ") 'URL on sws strTemp = "" & rsRoster.Fields("URL") & "" Response.Write("") Response.Write(strTemp) Response.Write(" | ") 'URL for Delete with RecID set appropriately strTemp = "Delete" Response.Write("") Response.Write(strTemp) Response.Write(" | ") 'Finish the table row Response.Write("
") ' Put a form with the "new student" button at the bottom of the page. response.write ("
") ' return connection and dataset memory rsRoster.Close Set rsRoster = Nothing DataConn.Close Set DataConn = Nothing %>