It was never dimmed. That shouldn't have caused it, right?
This creates the session variable:
If Request.Form("Passwordlogin") <> "" Then
Session("Password") = cStr(Request.Form("passwordlogin"))
END IF
This is the original code that called the variable:
<% If session("Password") = "" Then %>
Access Denied
<% Else %>
That wasn't working because I kept getting "Access Denied". I switched it to this and now it works:
<% If session("password") = "" Then %>
Access Denied
<% Else %>