0
我們的MVC 4項目不需要任何成員資格提供者。我有時會遇到這個奇怪的錯誤,但並非總是如此:如何完全禁用ASP.NET MVC中的成員提供者4
Default Membership Provider could not be found
有沒有辦法禁用所有的會員供應商?我在web.config
我們的MVC 4項目不需要任何成員資格提供者。我有時會遇到這個奇怪的錯誤,但並非總是如此:如何完全禁用ASP.NET MVC中的成員提供者4
Default Membership Provider could not be found
有沒有辦法禁用所有的會員供應商?我在web.config
在你的web.config沒有會員供應商,下,加
<membership>
<providers>
<clear/>
</providers>
</membership>
這應該清除任何現有的會員提供者。
將它們從web.config文件中刪除。 – Kaf