punctuation characters".
"Manish Bafna" wrote:
> Hi,
> The GeneratePassword method is used to generate a random password and is
> most commonly used by the ResetPassword method implemented by a membership
> provider to reset the password for a user to a new, temporary password.
> // Generate a new 12-character password with 0 non-alphanumeric character.
> string password = Membership.GeneratePassword(12, 0);
> ref:
http://msdn2.microsoft.com/en-us/library/system.web.security.membership.generatepassword.aspx > --
> Hope this answers your question.
> Thanks and Regards.
> Manish Bafna.
> MCP and MCTS.
>
>
>
> "WB" wrote:
>
> > Hi,
> >
> > Is there any way to specify ResetPassword() of the MembershipUser class to
> > generate passwords of only alpha-numeric characters?
> >
> >
> > Thanks,