Tags: | Categories: ASP.NET Posted by adamyork on 12/31/2009 3:24 AM | Comments (0)

Extending ASP.NET 2.0 Membership

This article explains some of the basics about “Membership” in ASP.NET 2.0 and how to extend the ASP.NET 2.0 security model

Extending the Membership Role Provider

Membership

The ASP.NET 2.0 membership role provider (from the SQL Server side) is a collection of MS SQL tables, stored procedures, and views called SqlMembershipProvider. This provider uses a database named aspnetdb and can be installed on your SQL server by running the SQL Server script found in the .net directory of Visual Studio install. More...