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.

C#
[System.ComponentModel.Bindable(true)]
public bool ItemsAsLinks { get; set; }

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

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also