1 write to _createUserStepContainer
System.Web (1)
UI\WebControls\CreateUserWizard.cs (1)
2493_createUserStepContainer = new CreateUserStepContainer(this, useInnerTable);
69 references to _createUserStepContainer
System.Web (69)
UI\WebControls\CreateUserWizard.cs (69)
167if (String.IsNullOrEmpty(Answer) && _createUserStepContainer != null) { 168ITextControl answerTextBox = (ITextControl)_createUserStepContainer.AnswerTextBox; 766if (String.IsNullOrEmpty(email) && _createUserStepContainer != null) { 767ITextControl emailTextBox = (ITextControl)_createUserStepContainer.EmailTextBox; 1215if (String.IsNullOrEmpty(password) && !AutoGeneratePassword && _createUserStepContainer != null) { 1216ITextControl passwordTextBox = (ITextControl)_createUserStepContainer.PasswordTextBox; 1372if (String.IsNullOrEmpty(question) && _createUserStepContainer != null) { 1373ITextControl questionTextBox = (ITextControl)_createUserStepContainer.QuestionTextBox; 1559if (String.IsNullOrEmpty(userName) && _createUserStepContainer != null) { 1560ITextControl userNameTextBox = (ITextControl)_createUserStepContainer.UserNameTextBox; 1767ITextControl userNameTextBox = (ITextControl)_createUserStepContainer.UserNameTextBox; 1774ITextControl emailTextBox = (ITextControl)_createUserStepContainer.EmailTextBox; 1781ITextControl questionTextBox = (ITextControl)_createUserStepContainer.QuestionTextBox; 1788ITextControl answerTextBox = (ITextControl)_createUserStepContainer.AnswerTextBox; 1796_createUserStepContainer.UserNameLabel.Text = UserNameLabelText; 1797WebControl userTextBox = (WebControl)_createUserStepContainer.UserNameTextBox; 1801_createUserStepContainer.PasswordLabel.Text = PasswordLabelText; 1802WebControl passwordTextBox = (WebControl)_createUserStepContainer.PasswordTextBox; 1805_createUserStepContainer.ConfirmPasswordLabel.Text = ConfirmPasswordLabelText; 1806WebControl confirmTextBox = (WebControl)_createUserStepContainer.ConfirmPasswordTextBox; 1815LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.Title, CreateUserStep.Title, TitleTextStyle, true); 1816LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.InstructionLabel, InstructionText, InstructionTextStyle, true); 1817LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.UserNameLabel, UserNameLabelText, LabelStyle, false); 1818LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.PasswordLabel, PasswordLabelText, LabelStyle, false); 1819LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.ConfirmPasswordLabel, ConfirmPasswordLabelText, LabelStyle, false); 1823LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.PasswordHintLabel, PasswordHintText, PasswordHintStyle, false); 1832LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.EmailLabel, EmailLabelText, LabelStyle, false); 1833emailTextBox = (WebControl)_createUserStepContainer.EmailTextBox; 1835RequiredFieldValidator emailRequired = _createUserStepContainer.EmailRequired; 1854RequiredFieldValidator questionRequired = _createUserStepContainer.QuestionRequired; 1855RequiredFieldValidator answerRequired = _createUserStepContainer.AnswerRequired; 1862LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.QuestionLabel, QuestionLabelText, LabelStyle, false); 1863questionTextBox = (WebControl)_createUserStepContainer.QuestionTextBox; 1866LoginUtil.ApplyStyleToLiteral(_createUserStepContainer.AnswerLabel, AnswerLabelText, LabelStyle, false); 1868answerTextBox = (WebControl)_createUserStepContainer.AnswerTextBox; 1897RequiredFieldValidator passwordRequired = _createUserStepContainer.PasswordRequired; 1898RequiredFieldValidator confirmPasswordRequired = _createUserStepContainer.ConfirmPasswordRequired; 1899CompareValidator passwordCompareValidator = _createUserStepContainer.PasswordCompareValidator; 1900RegularExpressionValidator regExpValidator = _createUserStepContainer.PasswordRegExpValidator; 1951RequiredFieldValidator userNameRequired = _createUserStepContainer.UserNameRequired; 1961RegularExpressionValidator emailRegExpValidator = _createUserStepContainer.EmailRegExpValidator; 1978HyperLink helpPageLink = _createUserStepContainer.HelpPageLink; 1979Image helpPageIcon = _createUserStepContainer.HelpPageIcon; 2005Control errorMessageLabel = _createUserStepContainer.ErrorMessageLabel; 2206RegisterTextChangedEvent(_createUserStepContainer.UserNameTextBox, UserNameTextChanged); 2207RegisterTextChangedEvent(_createUserStepContainer.EmailTextBox, EmailTextChanged); 2208RegisterTextChangedEvent(_createUserStepContainer.QuestionTextBox, QuestionTextChanged); 2209RegisterTextChangedEvent(_createUserStepContainer.AnswerTextBox, AnswerTextChanged); 2210RegisterTextChangedEvent(_createUserStepContainer.PasswordTextBox, PasswordTextChanged); 2211RegisterTextChangedEvent(_createUserStepContainer.ConfirmPasswordTextBox, ConfirmPasswordTextChanged); 2477Control errorMessageLabel = _createUserStepContainer.ErrorMessageLabel; 2494_createUserStepContainer.ID = _createUserStepContainerID; 2499_createUserStepContainer.SetEnableTheming(); 2501createUserStepTemplate.InstantiateIn(_createUserStepContainer.Container); 2503CreateUserStep.ContentTemplateContainer = _createUserStepContainer; 2504step.Controls.Add(_createUserStepContainer); 2592if (DefaultCreateUserStep && _createUserStepContainer != null) { 2595BaseValidator confirmPassword = _createUserStepContainer.ConfirmPasswordRequired; 2600BaseValidator passwordRequired = _createUserStepContainer.PasswordRequired; 2605BaseValidator passRegExp = _createUserStepContainer.PasswordRegExpValidator; 2611BaseValidator passRegExp = _createUserStepContainer.PasswordRegExpValidator; 2622BaseValidator emailRequired = _createUserStepContainer.EmailRequired; 2629BaseValidator emailRegExp = _createUserStepContainer.EmailRegExpValidator; 2637BaseValidator emailRegExp = _createUserStepContainer.EmailRegExpValidator; 2648BaseValidator questionRequired = _createUserStepContainer.QuestionRequired; 2656BaseValidator answerRequired = _createUserStepContainer.AnswerRequired; 2742ITextControl errorMessageLabel = (ITextControl)_createUserStepContainer.ErrorMessageLabel; 2860Control errorMessageLabel = _createUserStepContainer.ErrorMessageLabel; 3386var createUserContainer = _wizard._createUserStepContainer;