The more and more I work with MVC 4 to more and more I want to throw a brick in the face of everyone who was involved with its creation. For starters, I had to add this to system.webServer/modules:
<remove name="RoleManager" />
Then, I had to add this to web.config:
<membership>
<providers>
<clear/>
</providers>
</membership>
I kept getting errors about the Default Provider not being found, so I found that I could add this:
<add key="enableSimpleMembership" value="false" />
and now I get the error: "Internet Explorer cannot display the webpage". Friendly errors are turned off and that's still all I get.
Why is something that used to be so easy become so difficult? How can I turn off all the "functionality" that is built-in t ...
Go to the complete details ...