0
這是我的代碼IIS7 Windows身份驗證(如何從域用戶名?)
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,我需要使用Windows身份驗證在IIS7(用戶和域)asp.net應用程序。我在web.config中設置了Windows身份驗證,並在iis中啓用了Windows身份驗證。我禁用了匿名身份驗證。當我瀏覽到本地主機時,它會詢問用戶名和密碼。有任何想法嗎?
你是通過IE運行它嗎? – markp3rry