just copy the index.html below and the verify.asp below and modify accordingly..and you will be up..
and if you want to prevent bookmarking use this line at the top of every one of your pages...
<script language="vbscript">
if session("allow"

<>"True" then response.redirect "index.html"
</script>
this works for us.. Hope it helps!
Thanks
Chris
Apex Internet Development
here is index.html for the /admin directory
<html>
<head>
<title>Website Maintenance</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style fprolloverstyle>A:hover {color: #FF0000}
</style>
</head>
<body bgcolor="#FFFFFF" onLoad="" link="#FF0000">
<table border="0" cellspacing="1" cellpadding="1" align="center">
<tr>
<td height="22">
<table width="675" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<p align="center"><img border="0" src="../images/logo2.jpg" width="140" height="104"></p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="16" align="center">
<hr>
<p><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#000000">Welcome
to Site Maintenance Utility</font></b> </td>
</tr>
<tr>
<td height="2">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#000000">Please
login to access your account -</font></div>
</td>
</tr>
<tr>
<td height="113">
<form method="post" action="verify.asp" name="login">
<div align="center">
<div align="center">
<center>
<table border="0" cellpadding="4">
<tr>
<td><font face="Arial" color="#000000">Username:</font></td>
<td><font face="Arial" color="#000000"><input type="text" name="username" size="20" value=""></font></td>
</tr>
<tr>
<td><font face="Arial" color="#000000">Password:</font></td>
<td><font face="Arial" color="#000000"><input type="password" name="password" size="20" value=""></font></td>
</tr>
</table>
</center>
</div>
<font color="#000000">Password already entered for demo
version. Click Login to Login to management area!<br>
<br>
<input type="submit" name="B1" value="Login">
</font> </div>
</form>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td align="center">
<hr>
</td>
</tr>
</table>
</body>
</html>
here is the verify.asp script:
<%@Language=VBScript%>
<%Response.Buffer = True%>
<%
Response.Expires = 60
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
UserName = request("username"

Password = request("password"

if UserName="your username" and Password="your password" then
session("allow"

="True"
'//*********** PUT THE CONTENTS OF YOUR WEB PAGE HERE *********//
response.redirect "main.html"
else
response.write "<script language="&"Javascript>alert("&"'Invalid Account Information!');"&chr(10) & chr(13) & "location=" & "'index.html'"&";</script>"
End If
%>
<head>
<title></title>
<style fprolloverstyle>A:hover {color: #FF0000}
</style>
</head>
<body bgcolor="#000000" text="#FFFFFF">