|
<%
If Session("loginerror") = Null then
Session("loginerror") = False
End If
If Session("testname") = Null then
Session("testname") = ""
End If
Session("loggedinacctno") = -1
Session("loggedindeptno") = -1
Session("loggedinname") = ""
Session("loggedintype") = " "
If Session("loginerror") Then
Response.Write("Login error; please try again")
End If
%>
|
|
|
