R
Roberto Kohler
We need to automate user creation by importing data from another system.
We would like to create the users with the aspnet_Membership_CreateUser
stored procedure, but we haven't figured out how to set the password.
exec ASPNETDB.dbo.aspnet_Membership_CreateUser
@ApplicationName,
@UserName,
@Password,
@PasswordSalt,
@Email,
@PasswordQuestion,
@PasswordAnswer,
@IsApproved,
@CurrentTimeUtc,
@CreateDate,
@UniqueEmail,
@PasswordFormat,
@UserId OUTPUT
How do we create a hashed Password ?
How do we create/select a PasswordSalt ?
We would like to create the users with the aspnet_Membership_CreateUser
stored procedure, but we haven't figured out how to set the password.
exec ASPNETDB.dbo.aspnet_Membership_CreateUser
@ApplicationName,
@UserName,
@Password,
@PasswordSalt,
@Email,
@PasswordQuestion,
@PasswordAnswer,
@IsApproved,
@CurrentTimeUtc,
@CreateDate,
@UniqueEmail,
@PasswordFormat,
@UserId OUTPUT
How do we create a hashed Password ?
How do we create/select a PasswordSalt ?