2012-05-16 74 views
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身份驗證。我禁用了匿名身份驗證。當我瀏覽到本地主機時,它會詢問用戶名和密碼。有任何想法嗎?

+0

你是通過IE運行它嗎? – markp3rry

回答

0

你在firefox中運行這個嗎?當我的默認瀏覽器設置爲Firefox時,我遇到了同樣的問題。每次都會問我憑證。如果你使用IE,這應該沒有問題。希望能幫助到你!

+0

終於我解決了它在iis7我啓用Windows身份驗證,每件事情都運行好,對不起我的英語不好。 –

相關問題