BulletedList.SelectedValue Property
.NET Framework 3.0
Gets or sets the Value property of the selected ListItem object in the BulletedList control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[BindableAttribute(false)] public: virtual property String^ SelectedValue { String^ get () override; void set (String^ value) override; }
/** @property */ public String get_SelectedValue () /** @property */ public void set_SelectedValue (String value)
public override function get SelectedValue () : String public override function set SelectedValue (value : String)
Not applicable.
Property Value
The Value of the selected ListItem in the BulletedList; otherwise, an empty string (""), if no item is selected.The SelectedValue property is inherited from the ListControl class and is not applicable to the BulletedList control.
Note: |
|---|
| The SelectedValue property is set internally based on the selected list item in the BulletedList control. If you set the SelectedValue property directly, a NotSupportedException exception is thrown. |
This property is not bindable in visual designers, but is bindable at runtime. For more information, see BindableAttribute.
Community Additions
ADD
Show:
Note: