1 write to _templateContainer
System.Web (1)
UI\WebControls\login.cs (1)
1127
_templateContainer
= new LoginContainer(this);
14 references to _templateContainer
System.Web (14)
UI\WebControls\login.cs (14)
616
if (String.IsNullOrEmpty(password) &&
_templateContainer
!= null) {
617
ITextControl passwordTextBox = (ITextControl)
_templateContainer
.PasswordTextBox;
801
return
_templateContainer
;
918
if (String.IsNullOrEmpty(userName) &&
_templateContainer
!= null) {
919
ITextControl userNameTextBox = (ITextControl)
_templateContainer
.UserNameTextBox;
1128
_templateContainer
.RenderDesignerRegion = _renderDesignerRegion;
1133
_templateContainer
.EnableViewState = false;
1136
_templateContainer
.EnableTheming = false;
1141
template.InstantiateIn(
_templateContainer
);
1143
_templateContainer
.Visible = true;
1144
Controls.Add(
_templateContainer
);
1153
IEditableTextControl userNameTextBox =
_templateContainer
.UserNameTextBox as IEditableTextControl;
1157
IEditableTextControl passwordTextBox =
_templateContainer
.PasswordTextBox as IEditableTextControl;
1161
ICheckBoxControl rememberMeCheckBox = (ICheckBoxControl)
_templateContainer
.RememberMeCheckBox;