%@ LANGUAGE = JScript %> <% // Force Authentication if the LOGON_USER Server // Variable is blank by sending the Response.Status // of 401 Access Denied // Finish the Page by issuing a Response.End so that a user // cannot Cancel through the dialog Box if (Request.ServerVariables("LOGON_USER") == "") { Response.Status = "401 access denied"; Response.End(); } %>
You were authenticated using: <% = Request.ServerVariables("AUTH_TYPE") %> authentication