Click here to Skip to main content
Licence CPOL
First Posted 6 Jan 2008
Views 14,648
Downloads 142
Bookmarked 13 times

ASP.Net MembershipProvider : Auto generate password without nonalfanumaric character

By | 6 Jan 2008 | Article
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.

    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.

 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)

About the Author

gocebe

Software Developer (Senior)

Turkey Turkey

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionGeneratePassword problem PinmemberJeroenMX23:59 1 Apr '12  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 6 Jan 2008
Article Copyright 2008 by gocebe
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid