Implemented interface member:
property
Text
System.Web.UI.ITextControl.Text
19 writes to Text
System.Web (18)
UI\WebControls\BoundColumn.cs (1)
230
((TextBox)boundControl).
Text
= dataValue;
UI\WebControls\BoundField.cs (2)
619
((TextBox)boundControl).
Text
= dataValue;
623
((TextBox)boundControl).
Text
= data.ToString();
UI\WebControls\ImageField.cs (1)
521
((TextBox)boundControl).
Text
= data.ToString();
UI\WebControls\TextBox.cs (2)
548
Text
= ((LiteralControl)obj).Text;
654
Text
= postData;
UI\WebParts\AppearanceEditorPart.cs (3)
278
_title.
Text
= webPart.Title;
320
_value.
Text
= String.Empty;
324
_value.
Text
= value.Value.ToString(CultureInfo.CurrentCulture);
UI\WebParts\BehaviorEditorPart.cs (7)
435
_description.
Text
= webPart.Description;
436
_titleUrl.
Text
= webPart.TitleUrl;
437
_titleIconImageUrl.
Text
= webPart.TitleIconImageUrl;
438
_catalogIconImageUrl.
Text
= webPart.CatalogIconImageUrl;
439
_helpUrl.
Text
= webPart.HelpUrl;
440
_importErrorMessage.
Text
= webPart.ImportErrorMessage;
441
_authorizationFilter.
Text
= webPart.AuthorizationFilter;
UI\WebParts\LayoutEditorPart.cs (1)
266
_zoneIndex.
Text
= webPart.ZoneIndex.ToString(CultureInfo.CurrentCulture);
UI\WebParts\PropertyGridEditorPart.cs (1)
348
textBox.
Text
= pd.Converter.ConvertToString(pd.GetValue(instance));
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
68
textBox.
Text
= control.FieldValueEditString;
18 references to Text
System.Web (17)
UI\WebControls\BoundField.cs (1)
345
value = editBox.
Text
;
UI\WebControls\ImageField.cs (1)
302
value = editBox.
Text
;
UI\WebControls\TextBox.cs (4)
465
string s =
Text
;
648
string current =
Text
;
712
HttpUtility.HtmlEncode(
Text
, writer);
715
HttpUtility.HtmlEncode(System.Environment.NewLine +
Text
, writer);
UI\WebParts\AppearanceEditorPart.cs (2)
74
webPart.Title = _title.
Text
;
305
return (_value != null) ? _value.
Text
: String.Empty;
UI\WebParts\BehaviorEditorPart.cs (7)
168
webPart.Description = _description.
Text
;
174
string value = _titleUrl.
Text
;
187
value = _titleIconImageUrl.
Text
;
200
value = _catalogIconImageUrl.
Text
;
213
value = _helpUrl.
Text
;
227
webPart.ImportErrorMessage = _importErrorMessage.
Text
;
234
webPart.AuthorizationFilter = _authorizationFilter.
Text
;
UI\WebParts\LayoutEditorPart.cs (1)
112
if (Int32.TryParse(_zoneIndex.
Text
, NumberStyles.Integer, CultureInfo.CurrentCulture, out zoneIndex)) {
UI\WebParts\PropertyGridEditorPart.cs (1)
278
return pd.Converter.ConvertFromString(textBox.
Text
);
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
74
control._valueExtrator = () => textBox.
Text
;