29 instantiations of TextBox
System.Web (28)
UI\WebControls\BoundColumn.cs (1)
170
TextBox editor = new
TextBox
();
UI\WebControls\BoundField.cs (1)
575
TextBox editor = new
TextBox
();
UI\WebControls\ChangePassword.cs (4)
2875
TextBox userNameTextBox = new
TextBox
();
2885
TextBox currentPasswordTextBox = new
TextBox
();
2894
TextBox newPasswordTextBox = new
TextBox
();
2903
TextBox confirmNewPasswordTextBox = new
TextBox
();
UI\WebControls\CreateUserWizard.cs (6)
3156
container.UserNameTextBox = new
TextBox
() {
3161
container.PasswordTextBox = new
TextBox
() {
3166
container.ConfirmPasswordTextBox = new
TextBox
() {
3190
container.EmailTextBox = new
TextBox
() {
3234
container.QuestionTextBox = new
TextBox
() {
3238
container.AnswerTextBox = new
TextBox
() {
UI\WebControls\ImageField.cs (1)
451
TextBox editor = new
TextBox
();
UI\WebControls\login.cs (2)
1781
TextBox userNameTextBox = new
TextBox
();
1800
TextBox passwordTextBox = new
TextBox
();
UI\WebControls\PasswordRecovery.cs (2)
2270
TextBox answerTextBox = new
TextBox
();
2585
TextBox 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)
207
TextBox textBox = new
TextBox
();
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
66
var textBox = new
TextBox
();
47 references to TextBox
System.Web (46)
UI\WebControls\BoundColumn.cs (3)
170
TextBox
editor = new TextBox();
229
Debug.Assert(boundControl is
TextBox
, "Expected the bound control to be a TextBox");
230
((
TextBox
)boundControl).Text = dataValue;
UI\WebControls\BoundField.cs (7)
343
TextBox
editBox = childControl as
TextBox
;
575
TextBox
editor = new TextBox();
614
if (!(boundControl is
TextBox
)) {
619
((
TextBox
)boundControl).Text = dataValue;
623
((
TextBox
)boundControl).Text = data.ToString();
630
((
TextBox
)boundControl).Columns = 5;
UI\WebControls\ChangePassword.cs (5)
2853
private RequiredFieldValidator CreateRequiredFieldValidator(string id,
TextBox
textBox, string validationGroup, bool enableValidation) {
2875
TextBox
userNameTextBox = new TextBox();
2885
TextBox
currentPasswordTextBox = new TextBox();
2894
TextBox
newPasswordTextBox = new TextBox();
2903
TextBox
confirmNewPasswordTextBox = new TextBox();
UI\WebControls\ImageField.cs (7)
300
TextBox
editBox = childControl as
TextBox
;
451
TextBox
editor = new TextBox();
518
if (!(boundControl is
TextBox
)) {
521
((
TextBox
)boundControl).Text = data.ToString();
522
((
TextBox
)boundControl).ToolTip = altText;
527
((
TextBox
)boundControl).Columns = 5;
UI\WebControls\login.cs (2)
1781
TextBox
userNameTextBox = new TextBox();
1800
TextBox
passwordTextBox = new TextBox();
UI\WebControls\PasswordRecovery.cs (2)
2270
TextBox
answerTextBox = new TextBox();
2585
TextBox
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)
20
private
TextBox
_title;
299
private
TextBox
_value;
UI\WebParts\BehaviorEditorPart.cs (7)
26
private
TextBox
_description;
27
private
TextBox
_titleUrl;
28
private
TextBox
_titleIconImageUrl;
29
private
TextBox
_catalogIconImageUrl;
30
private
TextBox
_helpUrl;
31
private
TextBox
_importErrorMessage;
32
private
TextBox
_authorizationFilter;
UI\WebParts\LayoutEditorPart.cs (1)
23
private
TextBox
_zoneIndex;
UI\WebParts\PropertyGridEditorPart.cs (5)
207
TextBox
textBox = new TextBox();
277
TextBox
textBox = (
TextBox
)editorControl;
347
TextBox
textBox = (
TextBox
)control;
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
66
var
textBox = new TextBox();