ok, what about this ? will this work ? on the login form
VB Code:
  1. session("logged_in")=1

and on the menber page :
VB Code:
  1. <%
  2. if session("logged_in")=0 then
  3.       response.redirect("www.av.com")
  4. end if
  5. %>
  6. <html>
  7. <head>