Custom membership with SQL Database?

131 Views Asked by At

I want to implement custom membership using SQL database.I searched alot but couldn't find any good tutorial .can anybody help to take a good start ? I am using asp.net with c#. Thanks in advance.

1

There are 1 best solutions below

0
On

Start with code below:

using System;    
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;

public class MyMembershipProvider: SqlMembershipProvider
{
}