New features added to the Membership and MembershipUser class in the latest CTP drop of Visual Studio 2005. Membership class Generate password public string GeneratePassword(string length) This method will randomly generate a password with the given length. string password = Membership.GenereatePassword(10);Membership.CreateUser("Fredrik", password); The password could for ex...
[ 查看全文 ]