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)
548Text = ((LiteralControl)obj).Text; 654Text = 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)
348textBox.Text = pd.Converter.ConvertToString(pd.GetValue(instance));
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
68textBox.Text = control.FieldValueEditString;
18 references to Text
System.Web (17)
UI\WebControls\BoundField.cs (1)
345value = editBox.Text;
UI\WebControls\ImageField.cs (1)
302value = editBox.Text;
UI\WebControls\TextBox.cs (4)
465string s = Text; 648string current = Text; 712HttpUtility.HtmlEncode(Text, writer); 715HttpUtility.HtmlEncode(System.Environment.NewLine + Text, writer);
UI\WebParts\AppearanceEditorPart.cs (2)
74webPart.Title = _title.Text; 305return (_value != null) ? _value.Text : String.Empty;
UI\WebParts\BehaviorEditorPart.cs (7)
168webPart.Description = _description.Text; 174string value = _titleUrl.Text; 187value = _titleIconImageUrl.Text; 200value = _catalogIconImageUrl.Text; 213value = _helpUrl.Text; 227webPart.ImportErrorMessage = _importErrorMessage.Text; 234webPart.AuthorizationFilter = _authorizationFilter.Text;
UI\WebParts\LayoutEditorPart.cs (1)
112if (Int32.TryParse(_zoneIndex.Text, NumberStyles.Integer, CultureInfo.CurrentCulture, out zoneIndex)) {
UI\WebParts\PropertyGridEditorPart.cs (1)
278return pd.Converter.ConvertFromString(textBox.Text);
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
74control._valueExtrator = () => textBox.Text;