Click here to Skip to main content
15,891,372 members
Articles / Web Development / ASP.NET
Article

ASP.Net MembershipProvider : Auto generate password without nonalfanumaric character

Rate me:
Please Sign up or sign in to vote.
1.00/5 (3 votes)
6 Jan 2008CPOL 29.7K   271   13   3
Using ASP.Net MembershipProvider Auto Generate Password with does not contain nonalfanumaric character

Introduction

In an application that uses Asp.Net MembershipProvider, in the membership process if you don't want to use character except letter in your generated password that send to your given e-mail address, you have to follow below steps.
Unfortunately it seems complicated and in my opinion there is a design mistake related MembershipProvider.

Using the code

It requires some changes with CreateUserWizard control :
For this create new web control derived by CreateUserWizard control and override Password property.

C#
ToolboxData("<{0}:MyCreateUserWizard runat="server"></{0}:MyCreateUserWizard>")]
public class MyCreateUserWizard : CreateUserWizard
{

    public MyCreateUserWizard()
        : base()
    {

    }

    private string generatedPassword = string.Empty;

    public override string Password
    {
        get
        {
            if (string.IsNullOrEmpty(generatedPassword))
                generatedPassword = GeneratePassword();

            return generatedPassword;
        }
    }


}

And if you want same feature with PasswordRecovery control, you have to create new class derived by System.Web.Security.SqlMembershipProvider and override GeneratePassword method.

C#
public class MyMembershipProvider : System.Web.Security.SqlMembershipProvider
   {

       public MyMembershipProvider()
           : base()
       {
       }

       public override string GeneratePassword()
       {
           ....
       }
   }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Dogan Tv Digital Platform Isletmeciligi A.s.
Turkey Turkey
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
hims05611-Jan-13 20:32
hims05611-Jan-13 20:32 
GeneralRe: My vote of 1 Pin
gocebe17-Jan-13 8:59
gocebe17-Jan-13 8:59 
QuestionGeneratePassword problem Pin
JeroenMX1-Apr-12 23:59
JeroenMX1-Apr-12 23:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.