BulletedList.Text Property
.NET Framework 3.0
Gets or sets the text for the BulletedList control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property String^ Text { String^ get () override; void set (String^ value) override; }
/** @property */ public String get_Text () /** @property */ public void set_Text (String value)
public override function get Text () : String public override function set Text (value : String)
Not applicable.
Property Value
The SelectedValue of the BulletedList, if one of the items in the BulletedList is selected; otherwise, an empty string ("").The Text property is inherited from the ListControl class and is not applicable to the BulletedList control.
Note: |
|---|
| The Text property is set internally based on the selected list item in the BulletedList control. If you set the Text property directly, a NotSupportedException exception is thrown. |
While you cannot access the Text property of BulletedList control, you can use the event data of the BulletedListEventArgs class to determine the index of the link button in a BulletedList that was clicked. You can then access the Text property of the LinkButton control.
Community Additions
ADD
Show:
Note: