List.ItemsAsLinks Property

Definition

Gets a value indicating whether the items in the list are to be treated as hyperlinks. The default value is false. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 property bool ItemsAsLinks { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool ItemsAsLinks { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ItemsAsLinks : bool with get, set
Public Property ItemsAsLinks As Boolean

Property Value

true if items in the list are to be treated as hyperlinks; otherwise, false.

Attributes

Remarks

If the value of this property is true, the value of the DataTextField property is used to display the text of the hyperlink, and the DataValueField property is used to specify the target URL. Command events will not be generated for these links. Thus, when the ItemsAsLinks property is set to true, an OnItemCommand method will not be called because a new page will be loaded through an HTTP call.

Applies to

See also