29 instantiations of TextBox
System.Web (28)
UI\WebControls\BoundColumn.cs (1)
170TextBox editor = new TextBox();
UI\WebControls\BoundField.cs (1)
575TextBox editor = new TextBox();
UI\WebControls\ChangePassword.cs (4)
2875TextBox userNameTextBox = new TextBox(); 2885TextBox currentPasswordTextBox = new TextBox(); 2894TextBox newPasswordTextBox = new TextBox(); 2903TextBox confirmNewPasswordTextBox = new TextBox();
UI\WebControls\CreateUserWizard.cs (6)
3156container.UserNameTextBox = new TextBox() { 3161container.PasswordTextBox = new TextBox() { 3166container.ConfirmPasswordTextBox = new TextBox() { 3190container.EmailTextBox = new TextBox() { 3234container.QuestionTextBox = new TextBox() { 3238container.AnswerTextBox = new TextBox() {
UI\WebControls\ImageField.cs (1)
451TextBox editor = new TextBox();
UI\WebControls\login.cs (2)
1781TextBox userNameTextBox = new TextBox(); 1800TextBox passwordTextBox = new TextBox();
UI\WebControls\PasswordRecovery.cs (2)
2270TextBox answerTextBox = new TextBox(); 2585TextBox userNameTextBox = new TextBox();
UI\WebParts\AppearanceEditorPart.cs (2)
178_title = new TextBox(); 333_value = new TextBox();
UI\WebParts\BehaviorEditorPart.cs (7)
294_description = new TextBox(); 298_titleUrl = new TextBox(); 302_titleIconImageUrl = new TextBox(); 306_catalogIconImageUrl = new TextBox(); 310_helpUrl = new TextBox(); 314_importErrorMessage = new TextBox(); 318_authorizationFilter = new TextBox();
UI\WebParts\LayoutEditorPart.cs (1)
172_zoneIndex = new TextBox();
UI\WebParts\PropertyGridEditorPart.cs (1)
207TextBox textBox = new TextBox();
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
66var textBox = new TextBox();
47 references to TextBox
System.Web (46)
UI\WebControls\BoundColumn.cs (3)
170TextBox editor = new TextBox(); 229Debug.Assert(boundControl is TextBox, "Expected the bound control to be a TextBox"); 230((TextBox)boundControl).Text = dataValue;
UI\WebControls\BoundField.cs (7)
343TextBox editBox = childControl as TextBox; 575TextBox editor = new TextBox(); 614if (!(boundControl is TextBox)) { 619((TextBox)boundControl).Text = dataValue; 623((TextBox)boundControl).Text = data.ToString(); 630((TextBox)boundControl).Columns = 5;
UI\WebControls\ChangePassword.cs (5)
2853private RequiredFieldValidator CreateRequiredFieldValidator(string id, TextBox textBox, string validationGroup, bool enableValidation) { 2875TextBox userNameTextBox = new TextBox(); 2885TextBox currentPasswordTextBox = new TextBox(); 2894TextBox newPasswordTextBox = new TextBox(); 2903TextBox confirmNewPasswordTextBox = new TextBox();
UI\WebControls\ImageField.cs (7)
300TextBox editBox = childControl as TextBox; 451TextBox editor = new TextBox(); 518if (!(boundControl is TextBox)) { 521((TextBox)boundControl).Text = data.ToString(); 522((TextBox)boundControl).ToolTip = altText; 527((TextBox)boundControl).Columns = 5;
UI\WebControls\login.cs (2)
1781TextBox userNameTextBox = new TextBox(); 1800TextBox passwordTextBox = new TextBox();
UI\WebControls\PasswordRecovery.cs (2)
2270TextBox answerTextBox = new TextBox(); 2585TextBox userNameTextBox = new TextBox();
UI\WebControls\TextBox.cs (5)
18/// <para>Interacts with the parser to build a <see cref='System.Web.UI.WebControls.TextBox'/> control.</para> 68/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.TextBox'/> class.</para> 268(this.GetType() != typeof(TextBox))) { 673/// <para>Invokes the <see cref='System.Web.UI.WebControls.TextBox.OnTextChanged'/> method 683/// <para>Invokes the <see cref='System.Web.UI.WebControls.TextBox.OnTextChanged'/> method
UI\WebParts\AppearanceEditorPart.cs (2)
20private TextBox _title; 299private TextBox _value;
UI\WebParts\BehaviorEditorPart.cs (7)
26private TextBox _description; 27private TextBox _titleUrl; 28private TextBox _titleIconImageUrl; 29private TextBox _catalogIconImageUrl; 30private TextBox _helpUrl; 31private TextBox _importErrorMessage; 32private TextBox _authorizationFilter;
UI\WebParts\LayoutEditorPart.cs (1)
23private TextBox _zoneIndex;
UI\WebParts\PropertyGridEditorPart.cs (5)
207TextBox textBox = new TextBox(); 277TextBox textBox = (TextBox)editorControl; 347TextBox textBox = (TextBox)control;
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
66var textBox = new TextBox();