<%@ Language=VBScript %> <% ' PAGE SUMMARY: ' This page is simply a script that checks if the user has submitted the proper strings to be ' allowed into the site; ' We use the If - Then logic structure to do an authentication check; ' We use the response object with the redirect method (response.redirect); this sends the user to the ' URL of our choice; ' If the user has submitted the proper username and password, we will send them through to the index page; ' If the user fails, we will send them to a "failure" message Session("Login") = false Response.Redirect "http://www.bromleyeastcs.org" %>