Skip to content

Instantly share code, notes, and snippets.

@sandrinodimattia
Created August 31, 2012 23:42
Show Gist options
  • Save sandrinodimattia/3561219 to your computer and use it in GitHub Desktop.
Save sandrinodimattia/3561219 to your computer and use it in GitHub Desktop.
DefaultMembershipProvider override example
public class AzureMembershipProvider : System.Web.Providers.DefaultMembershipProvider
{
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config)
{
string connectionStringName = config["connectionStringName"];
// Do something here...
base.Initialize(name, config);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment