これは私のコードです
Dim username2 As System.Security.Principal.IPrincipal
username2 = System.Web.HttpContext.Current.User
Dim username As String
username = username2.Identity.Name
Response.Write(username)
vs 2010 で asp.net アプリケーションを使用しています。iis7 (ユーザーとドメイン) で Windows 認証を使用する必要があります。web.config で Windows 認証を設定し、iis で Windows 認証を有効にしました。匿名認証を無効にしました。localhost を参照すると、ユーザー名とパスワードを要求されます。何か案は?