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