<%@ 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(); } %> Login Screens Login Screens

You logged in as user: <%= Request.ServerVariables("LOGON_USER") %>

You were authenticated using: <%= Request.ServerVariables("AUTH_TYPE") %> authentication.