%
Response.Expires = -1000 'Make sure the browser doesn't cache this page
Response.Buffer = True 'enables our response.redirect to work
%>
Biasiswa Kecil Sekolah Menengah
<%
If Request.Form("submit") ="Login" Then
CheckLoginForm
Else
ShowLoginForm
End If
%>
<%
Sub CheckLoginForm
'check if the value of the text field 'username' and 'password' are correct
If Request.Form("password") = "biasiswa" Then
Session("BlnLoggedIn") = True
Response.Redirect "bksm.asp"
Else
'if the values entered are incorrect then display the message below
Response.Write "You are not logged in.
"
ShowLoginForm
End If
End Sub
%>
<% Sub ShowLoginForm %>
<% End Sub %>