%@ LANGUAGE = VBScript %> <% Option Explicit %> <% '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") = "" Then Response.Status = "401 Access Denied" Response.End End If %>
You were authenticated using: <%= Request.ServerVariables("AUTH_TYPE") %> authentication.