0
我有這樣的代碼User.Identity.Name扔對象引用未設置爲一個實例
public UserProfile spUserProfileGet()
{
// this line throw : Object reference not set to an instance
var user = HttpContext.Current.User.Identity.Name;
//...
}
在我的IIS設置發展,我有
Anonymous Authentication : Disabled
Windows Authentication : Enabled
,我越來越
Object reference not set to an instance
這是爲什麼?我在很多項目中使用這個類之前沒有問題:/
HttpContext.Current.User
是NULL
,但是爲什麼?
可能重複[什麼是NullReferenceException,以及如何解決它?](http://stackoverflow.com/questions/4660142/what-is-a-nullreferenceexception-and-how-doi-i-fix -it) – DavidG
是的,User對象是NULL,但是爲什麼? – Muflix
閱讀重複的問題,它告訴你如何確定。 – DavidG