Questions tagged [createuserwizard]
132 questions
1
vote
2 answers
Change text of CreateUser button in CreateUserWizard control
I've seen a lot of customization questions, but I still haven't seen how to just change the text of the CreateUser button. It seems that the button it automatically showing despite already switching it to a custom template.
Nevermind, I'm an idiot.…

scojomodena
- 842
- 1
- 14
- 24
1
vote
1 answer
CreateUserWizard Database Access Asp.Net
I added custom questions to the CreateUserWizard control and created an additional table in the ASPNETDB database called aspnet_UserInfo. How do I sql insert into table when the [Create User] button is clicked like they do for the username? Or do i…

Troy Mitchel
- 1,790
- 11
- 50
- 88
1
vote
1 answer
"DisableCreatedUser" is not working properly
I am using a ASP.NET CreateUserWizard to registering users.
I wanted user to not automatically log after registration until they login manually.

huMpty duMpty
- 14,346
- 14
- 60
- 99
1
vote
1 answer
CreateUserWizard's LoginCreatedUser=false and email sending doesn't work
In CreateUserWizard I have set:
DisableCreatedUser="True"
LoginCreatedUser="False"
but the user is logged on after it is created.
and also for sending a verification email I have added:

nima
- 6,566
- 4
- 45
- 57
1
vote
1 answer
Error in connect to SQL database through CreateUserWizard
I added a "create User Wizard" to a web Form and change the web.config file to change the database address. I ran this form and filled the fields , then clicked the submit button. This error page was appeared :"Server Error in '/'…

pooya mahmoodi
- 93
- 11
1
vote
3 answers
C# asp.net custom MembershipUser.createUser() method, call it from createuserwizard control
I have created custom MembershipUser, MembershipProvider and RolePrivoder classes. These all work and I am very happy with it, apart from one thing. I have an extra field in the "Users" table. I have an overridden method for CreateUser() that…

Jon
- 15,110
- 28
- 92
- 132
1
vote
1 answer
How to add user to roles during CreateUserWizard.CreatedUser step
How to add user to roles during CreateUserWizard.CreatedUser?
What's wrong in this code:
Protected Sub CreateUserWizard1_CreatedUser(ByVal sender As Object, ByVal e As EventArgs) Handles CreateUserWizard1.CreatedUser
Dim username As TextBox =…

user583181
- 75
- 1
- 5
- 21
1
vote
0 answers
ASP.Net fail to assign roles in create user wizard
I want to assign roles to users when I create them by using the ASP.Net user create wizard.
I followed the steps written in the following answers:
Adding roles to the 'CreateUserWizard'
and
ASP.net failing to add role to user
but I always got an…

Marwa
- 11
- 3
1
vote
2 answers
Can't clear credentials textboxes on ASP.NET CreateUserWizard Control
I have a CreateUserWizard control using forms authentication on my login/create user page. I customized the CreateUserWizardStep1 so that I could add some additional validators.
After successfully creating a user with the control and it displays…

bulltorious
- 7,769
- 4
- 49
- 78
1
vote
1 answer
Membership.GetUser -> Membership doesn't contain a definition for 'GetUser'. What have I missed?
MembershipUser newUser = Membership.GetUser(CreateUserWizard1.UserName);
I get a red line under GetUser and when I hover over it, a message appears:
Membership doesn't contain a definition for 'GetUser'
When I click the small dash below GetUser I…

Saleh Feek
- 2,048
- 8
- 34
- 56
1
vote
1 answer
Remove username validate createuserwizard
I'm building a login and register page for a website with Asp.Net
In login page have a popup register form.
A problem in this is : I wanna use my validate for user but I cannot disable validator of CreateUserWizard.
1/ How can I turn off the…

Duy Hưng Androgyne Tenor
- 381
- 3
- 12
1
vote
1 answer
ASP CreateUserWizard Membership provider registration user validation
Im a newbie to the world of ASP and C#, I have just created my first Registration form using the CreateUserWizard Membership Provider and set up the validators which work great, Appart from the "Username". If the user name is taken the page simply…

Yardstermister
- 2,041
- 3
- 15
- 12
1
vote
2 answers
ASP.NET Create User Wizard - Customisation help
I have used the asp membership feature to add user management to my web app. I have modified the default tables to include a couple more fields. On the create user wizard I have turned wizard step one into a customizable template and have added in…

iamjonesy
- 24,732
- 40
- 139
- 206
1
vote
0 answers
Google Recaptcha with Createuserwizard throwing "System.NotImplementedException: This setter is not implemented."
I am using reCAPTCHA with ASP.NET. When I use separately it works fine, bu when I add it to the 's I get System.NotImplementedException: This setter is not implemented. This is my…

gdrt
- 3,160
- 4
- 37
- 56
1
vote
2 answers
Programmatically switch to CompleteWizardStep in CreateUserWizard control
How do I programmatically switch to the asp:CompleteWizardStep step in the OnCreatingUser event in the asp:CreateUserWizard control?
ASP.NET web form

Michael Kniskern
- 24,792
- 68
- 164
- 231