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)
616if (String.IsNullOrEmpty(password) && _templateContainer != null) { 617ITextControl passwordTextBox = (ITextControl)_templateContainer.PasswordTextBox; 801return _templateContainer; 918if (String.IsNullOrEmpty(userName) && _templateContainer != null) { 919ITextControl userNameTextBox = (ITextControl)_templateContainer.UserNameTextBox; 1128_templateContainer.RenderDesignerRegion = _renderDesignerRegion; 1133_templateContainer.EnableViewState = false; 1136_templateContainer.EnableTheming = false; 1141template.InstantiateIn(_templateContainer); 1143_templateContainer.Visible = true; 1144Controls.Add(_templateContainer); 1153IEditableTextControl userNameTextBox = _templateContainer.UserNameTextBox as IEditableTextControl; 1157IEditableTextControl passwordTextBox = _templateContainer.PasswordTextBox as IEditableTextControl; 1161ICheckBoxControl rememberMeCheckBox = (ICheckBoxControl)_templateContainer.RememberMeCheckBox;