9 writes to Value
System.Web (9)
UI\HtmlControls\HtmlSelect.cs (2)
656item.Value = DataBinder.GetPropertyValue(dataItem,valueField,null); 660item.Text = item.Value = dataItem.ToString();
UI\WebControls\ListControl.cs (2)
710item.Value = DataBinder.GetPropertyValue(dataItem, valueField, null); 720item.Value = dataItem.ToString();
UI\WebControls\listitem.cs (3)
273Value = (string) t.Second; 287Value = (string) p.Second; 396Value = null;
UI\WebParts\ConnectionsZone.cs (2)
2167item.Value = (string)consumerEntry.Key; 2222item.Value = (string)providerEntry.Key;
20 references to Value
System.Web (20)
UI\HtmlControls\HtmlSelect.cs (2)
455return(i < 0 || i >= Items.Count) ? String.Empty : Items[i].Value; 844writer.WriteAttribute("value", li.Value, true /*fEncode*/);
UI\WebControls\BaseValidator.cs (1)
526return((ListItem) value).Value;
UI\WebControls\BulletedList.cs (1)
402writer.AddAttribute(HtmlTextWriterAttribute.Href, ResolveClientUrl(item.Value));
UI\WebControls\CheckBoxList.cs (1)
546_controlToRepeat.InputAttributes.Add("value", item.Value);
UI\WebControls\ListControl.cs (3)
386return (i < 0) ? String.Empty : Items[i].Value; 797writer.WriteAttribute("value", li.Value, true /*fEncode*/); 805Page.ClientScript.RegisterForEventValidation(UniqueID, li.Value);
UI\WebControls\listitem.cs (4)
215return HashCodeCombiner.CombineHashCodes(Value.GetHashCode(), Text.GetHashCode()); 226return Value.Equals(other.Value) && Text.Equals(other.Text); 324value = Value;
UI\WebControls\ListItemCollection.cs (2)
187if (item.Value.Equals(value) && (includeDisabled || item.Enabled)) { 400values[i] = this[i].Value;
UI\WebControls\RadioButtonList.cs (2)
256if (post == Items[i].Value && Items[i].Enabled) { 507controlToRepeat.Attributes["value"] = item.Value;
UI\WebParts\LayoutEditorPart.cs (1)
249string zoneID = item.Value;
UI\WebParts\RowToFieldTransformer.cs (1)
130if (String.Equals(item.Value, _owner.FieldName, StringComparison.OrdinalIgnoreCase)) {
UI\WebParts\RowToParametersTransformer.cs (2)
291ListItem item = new ListItem(consumerItem.Text, consumerItem.Value); 294if (String.Equals(item.Value, consumerFieldValue, StringComparison.OrdinalIgnoreCase)) {