%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Response.Expires = -1000 'Makes the browser not cache this page Response.Buffer = True 'Buffers the content so our Response.Redirect will work Session("UserLoggedIn") = "" If Request.Form("login") = "true" Then CheckLogin Else ShowLogin End If Sub ShowLogin %> <% End Sub Sub CheckLogin If LCase(Request.Form("username")) = "src" And LCase(Request.Form("userpwd")) = "signs" Then Session("UserLoggedIn") = "true" Response.Redirect "0053.asp" Else Response.Write("") ShowLogin End If End Sub %>
![]() |
|||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||
|