czetsuya's tech ― Here's how you would want to call mssql's aspnet_Membership_CreateUser method:DECLARE @return_value int, @UserId uniqueidentifier, @nowUtc datetime, @now datetime set @nowUtc = getutcdate() set @now = getdate()EXEC @return_value = [dbo].[aspnet_Membership_CreateUser] @ApplicationName = N'myApp', @UserName = N'myUserName', @Password = N'GnVHaGINqzkX14MAjYFNS8eIj1M=', @PasswordSalt = N'BdR75cxL6c4sTWaDq+AuVw==', @Email = N'myEmail', @PasswordQuestion = N'secretQuestion', @PasswordAnswer[...]
What would you say?
Be the first to comment on this blog post! Sign in or Create an account.