%@ Language = "VBScript" %>
<%Option Explicit%>
<% Response.Expires = -1 'This prevents caching of the page %>
<%
' ** Add Login Validation Check
If Session("ValidatePage") = FALSE Then
Response.Redirect "newjoin.asp"
End If
Function BuildPage()
%>
<%
If Session("ValidatePage") = TRUE then
Response.Write("Welcome Back " & Session("First_Name") & "!")
Else
Response.Write("Welcome Guest!")
End If
%>