%@ Language=VBScript %> <% ' This checks to make sure person is logged in good for levels 3-9 If Session("PassCheck") <> "yes" Then Response.Redirect "/members/default.asp" End If ' Use this code if you need to restrict to confirmed members If Session("TheLevel") < "3" Then Response.Redirect "/index.htm" End If %>
|