BulletedList.SelectedValue Property

Note: This property is new in the .NET Framework version 2.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)

[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)

Property Value

The Value of the selected ListItem in the BulletedList; otherwise, an empty string (""), if no item is selected.

Exception typeCondition

NotSupportedException

An attempt was made to assign a value to the SelectedValue.

The SelectedValue property is inherited from the ListControl class and is not applicable to the BulletedList control.

NoteNote

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.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: