File: D:/web archive/conferencesearch (old) (to delete)/book/inc-main.asp
<%Option Explicit%>
<%
' if password has been set up and not authenticated then get password '
' otherwise continue with normal stuff '
If Application("DevelopmentPassword") <> "" And Not Session("Authenticated") Then
If UCase(Request.Form("password")) = UCase(Application("DevelopmentPassword")) Then
Session("Authenticated") = True
Else
Response.Redirect("getpassword.asp")
End If
End If
%>
<!--#include file="dbfunctions.asp"-->
<!--#include file="apputils.asp"-->
<!--#include file="apputils2.asp"-->
<!--#include file="inc-template-booking.asp"-->