Questions tagged [createuserwizard]
132 questions
1
vote
1 answer
MobilePin createuserwizard doesn't work?
I am new to asp.net and I am first time using membership controls in my project.
Here in my project while creating new user I need the Mobile number of the user, How can I enable the MobilePin of CreateUserWizard. Because I saw MobilePin field in…

user3436232
- 53
- 8
1
vote
3 answers
Asp.net: How do i add extra user details on Membership database?
I am new to membership stuff on asp.net. If I need to create a new user with extra parameter e.g firstname. Should I create a new table for those extra parameters?
If I am not using CreateUserWizard to create user, do I just use…

LittleFunny
- 8,155
- 15
- 87
- 198
1
vote
1 answer
CreateUserWizard step changing issue after account creation
I want to change the createuserwizard.step= start if the mail sending fails and not to go to successful creation step.
catch (SmtpException ex)
{
Membership.DeleteUser(textboxemail.Text.Trim());
Literal…

Spirals Whirls
- 543
- 1
- 8
- 27
1
vote
1 answer
Email Verification Issue with UserID
I am trying to use create user wizard in asp.net for creating new accounts based on this article www.4guysfromrolla.com/articles/062508-1.aspx, disabled his account for immediate login and send email immediately after registration to the concerned…

Kitty
- 300
- 3
- 12
1
vote
1 answer
Editing CreateUserWizard Textbox in OnCreatingUser Event
Okay I have this scenario here. I have a Register.aspx for registering new users. I'm using CreateUserWizard. I want the users to use only the company's email for the registration. So I placed a label beside the Email textbox showing the domain,…

Zenvo
- 83
- 2
- 10
1
vote
0 answers
Fileupload in CreateUserWizard
I have a createuserwizard (cuw) control and I want to add more fields (customizing). I need to store this info in a database called 'UserProfiles'. I´ve added a fileupload control to store an image (avatar) and the problem is here. When I refresh my…

user1925034
- 39
- 1
- 1
- 3
1
vote
1 answer
RequiredFieldValidator not working inside createuserwizard
I have created 2 steps in the createuserwizard. 1st step is for user to input in their particulars and 2nd step is for default login step (username, password, security q&a)..
The validator works fine at step 1, however it is not working in step 2.…

user1529419
- 441
- 2
- 9
- 19
1
vote
2 answers
Adding Regex Validators with CreateUserWizard they are not Working
I am adding some regex with the register user steps, they are working because the '*' is being displayed but the Wizard will still let me create an account with errors of regex.
I tried to redo the wizard
Changing some features but…

xArd
- 49
- 11
1
vote
1 answer
Hide and Prepopulate Field in ASP.NET CreateUserWizard Control?
I have an application in which a user fills out a form indicating their interest in a service. This includes contact info. (e.g. name, email). They are then redirected to a page with a CreateUserWizard control - the idea being that it will…

Dave Mackey
- 4,306
- 21
- 78
- 136
1
vote
0 answers
Remove CompleteWizardStep from CreateUserWizard?
I'm using an ASP control CreateUserWizard, and want to skip the page that says "user successfully created" along with the continue button. Is it possible to skip the CompleteWizardStep altogether?

codewarrior
- 984
- 4
- 18
- 34
0
votes
1 answer
ASP.Net C# CreateUserWizard Username, Password Properties
Using ASP.Net Membership and CreateUserWizard, I noticed I am unable in code retrieve the values for Passoword, UserName, ConfirmPassword, etc. I am able to retieve extended extended properties.
Wondering if possible to retrieve UserName, etc. I…

deDogs
- 739
- 1
- 8
- 24
0
votes
3 answers
Getting ClientID of textbox in CreateUser Wizard using jquery
I want to check the username availbilty so I have this code: