2006-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 28 Nov 2006 22:46:12 +0000 (22:46 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Tue, 28 Nov 2006 22:46:12 +0000 (22:46 -0000)
* CreateUserWizard.cs: implement GeneratePassword based on Membership.

svn path=/trunk/mcs/; revision=68625

mcs/class/System.Web/System.Web.UI.WebControls/ChangeLog
mcs/class/System.Web/System.Web.UI.WebControls/CreateUserWizard.cs

index c6421b043c416ffb0755724c8da7f20e88c9e4a9..aaff028839ce5001c9149a901a8b437d5f883481 100644 (file)
@@ -1,3 +1,7 @@
+2006-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * CreateUserWizard.cs: implement GeneratePassword based on Membership.
+
 2006-11-27  Vladimir Krasnov  <vladimirk@mainsoft.com>
 
        * Wizard.cs: fixed GetStepType method that returned wrong type if the
index ff7734bcd7d9ed585377dad2abd2decc752f1a5b..40da2ae2b7deb3b6b0a355cd1b62d5abd7e3fe52 100644 (file)
@@ -1485,10 +1485,7 @@ namespace System.Web.UI.WebControls
 
                private string GeneratePassword ()
                {
-                       // FIXME:
-                       // Generate an actual password!
-                       
-                       return "password";
+                       return Membership.GeneratePassword (8, 3);
                }
 
                #endregion