I was working with the new version of ASP.NET MVC3 and was learning the WebSecurity class. I added System.Web.Webpages as a reference and can use the properties and methods of WebSecurity, however I am trying to figure out how to configure it on an ASP.NET page and not on WebMatrix. In the Webconfig file, I noticed in the AppSettings section a new key called enableSimpleMembership with the value set to false. Changing this parameter to true seemed trivial, but they should have a SimpleMembershipProvider in the Members \ providers section of the Webconfig file. Has anyone seen this or tried to include SimpleMembership inside an ASP.NET page, and does anyone know about adding SimpleMembershipProvider to the webconfig file? I referred to this one , but it did not seem to have all the information I was looking for.
source
share