Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8148771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:42:41+00:00 2026-06-06T14:42:41+00:00

Is there any ASP.NET Membership file Template available ? if it is not available

  • 0

Is there any ASP.NET Membership file Template available ?

if it is not available how to write Custom Membership file from the Scratch… ?

Thanks in Adv.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T14:42:42+00:00Added an answer on June 6, 2026 at 2:42 pm

    Here are the methods you need to override for your membership provider. If you want to learn, you can decompile this ASP.NET Universal Providers using JetBrains’s dotPeek or telerik JustDecompile; you will get DefaultMembershipProvider.cs (I cannot upload it as it is too long).

    public class CustomMembershipProvider : MembershipProvider
    {
        public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
        {
            throw new NotImplementedException();
        }
    
        public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)
        {
            throw new NotImplementedException();
        }
    
        public override string GetPassword(string username, string answer)
        {
            throw new NotImplementedException();
        }
    
        public override bool ChangePassword(string username, string oldPassword, string newPassword)
        {
            throw new NotImplementedException();
        }
    
        public override string ResetPassword(string username, string answer)
        {
            throw new NotImplementedException();
        }
    
        public override void UpdateUser(MembershipUser user)
        {
            throw new NotImplementedException();
        }
    
        public override bool ValidateUser(string username, string password)
        {
            throw new NotImplementedException();
        }
    
        public override bool UnlockUser(string userName)
        {
            throw new NotImplementedException();
        }
    
        public override MembershipUser GetUser(object providerUserKey, bool userIsOnline)
        {
            throw new NotImplementedException();
        }
    
        public override MembershipUser GetUser(string username, bool userIsOnline)
        {
            throw new NotImplementedException();
        }
    
        public override string GetUserNameByEmail(string email)
        {
            throw new NotImplementedException();
        }
    
        public override bool DeleteUser(string username, bool deleteAllRelatedData)
        {
            throw new NotImplementedException();
        }
    
        public override MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords)
        {
            throw new NotImplementedException();
        }
    
        public override int GetNumberOfUsersOnline()
        {
            throw new NotImplementedException();
        }
    
        public override MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
        {
            throw new NotImplementedException();
        }
    
        public override MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
        {
            throw new NotImplementedException();
        }
    
        public override bool EnablePasswordRetrieval
        {
            get { throw new NotImplementedException(); }
        }
    
        public override bool EnablePasswordReset
        {
            get { throw new NotImplementedException(); }
        }
    
        public override bool RequiresQuestionAndAnswer
        {
            get { throw new NotImplementedException(); }
        }
    
        public override string ApplicationName
        {
            get { throw new NotImplementedException(); }
            set { throw new NotImplementedException(); }
        }
    
        public override int MaxInvalidPasswordAttempts
        {
            get { throw new NotImplementedException(); }
        }
    
        public override int PasswordAttemptWindow
        {
            get { throw new NotImplementedException(); }
        }
    
        public override bool RequiresUniqueEmail
        {
            get { throw new NotImplementedException(); }
        }
    
        public override MembershipPasswordFormat PasswordFormat
        {
            get { throw new NotImplementedException(); }
        }
    
        public override int MinRequiredPasswordLength
        {
            get { throw new NotImplementedException(); }
        }
    
        public override int MinRequiredNonAlphanumericCharacters
        {
            get { throw new NotImplementedException(); }
        }
    
        public override string PasswordStrengthRegularExpression
        {
            get { throw new NotImplementedException(); }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

is there any custom asp.net membership providers that someone has already created online. I
Is there any way to access my asp.net dev server (launched from visual studio)
Is there any tool to configure membership providers in Web.config file from within VS2005?
Is there any framework/library for using ASP.NET Membership Provider with confirmation email, something ready
Is there any way to render ASP.net MVC controls or code directly within a
Are there any known issues with ASP.Net Ajax and IE6 in Windows 2000 machines
Is there any reliable way how to check whether ASP.NET 4.0 registered on IIS
Is there any performance different between hosting your asp.net in mono on linux and
Is there any way to use server controls in ASP.NET MVC? Specifically I need
Is there any way to read the asp.net Import directives at runtime? I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.