12 writes to Text
System.Web (12)
UI\HtmlControls\HtmlSelect.cs (2)
653
item.
Text
= DataBinder.GetPropertyValue(dataItem,textField,null);
660
item.
Text
= item.Value = dataItem.ToString();
UI\WebControls\ListControl.cs (3)
707
item.
Text
= DataBinder.GetPropertyValue(dataItem, textField, textFormat);
715
item.
Text
= String.Format(CultureInfo.CurrentCulture, textFormat, dataItem);
718
item.
Text
= dataItem.ToString();
UI\WebControls\listitem.cs (5)
270
Text
= (string) t.First;
286
Text
= (string) p.First;
290
Text
= (string) state;
367
Text
= ((LiteralControl)obj).Text;
386
Text
= null;
UI\WebParts\ConnectionsZone.cs (2)
2166
item.
Text
= GetDisplayTitle(consumer.WebPart, consumer.ConnectionPoint, true);
2221
item.
Text
= GetDisplayTitle(provider.WebPart, provider.ConnectionPoint, false);
16 references to Text
System.Web (16)
UI\HtmlControls\HtmlSelect.cs (1)
855
HttpUtility.HtmlEncode(li.
Text
, writer);
UI\WebControls\BulletedList.cs (3)
394
HttpUtility.HtmlEncode(item.
Text
, writer);
414
HttpUtility.HtmlEncode(item.
Text
, writer);
428
HttpUtility.HtmlEncode(item.
Text
, writer);
UI\WebControls\CheckBoxList.cs (1)
549
_controlToRepeat.Text = item.
Text
;
UI\WebControls\ListControl.cs (1)
809
HttpUtility.HtmlEncode(li.
Text
, writer);
UI\WebControls\listitem.cs (6)
215
return HashCodeCombiner.CombineHashCodes(Value.GetHashCode(),
Text
.GetHashCode());
226
return Value.Equals(other.Value) &&
Text
.Equals(other.
Text
);
244
return this.
Text
;
321
text =
Text
;
362
/// <para> Allows the <see cref='System.Web.UI.WebControls.ListItem.
Text
'/>
UI\WebControls\ListItemCollection.cs (2)
168
if (item.
Text
.Equals(text) && (includeDisabled || item.Enabled)) {
399
texts[i] = this[i].
Text
;
UI\WebControls\RadioButtonList.cs (1)
505
controlToRepeat.Text = item.
Text
;
UI\WebParts\RowToParametersTransformer.cs (1)
291
ListItem item = new ListItem(consumerItem.
Text
, consumerItem.Value);