Bearbeiten

HyperLinkField.DataNavigateUrlFields Property

Definition

Gets or sets the names of the fields from the data source used to construct the URLs for the hyperlinks in the HyperLinkField object.

public:
 virtual property cli::array <System::String ^> ^ DataNavigateUrlFields { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.StringArrayConverter))]
public virtual string[] DataNavigateUrlFields { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.StringArrayConverter))>]
member this.DataNavigateUrlFields : string[] with get, set
Public Overridable Property DataNavigateUrlFields As String()

Property Value

String[]

An array containing the names of the fields from the data source used to construct the URLs for the hyperlinks in the HyperLinkField. The default is an empty array, indicating that DataNavigateUrlFields is not set.

Attributes

Remarks

Use the DataNavigateUrlFields property when the data source contains multiple fields that must be combined to create the hyperlinks for the HyperLinkField object. The fields specified in the DataNavigateUrlFields property are combined with the format string in the DataNavigateUrlFormatString property to construct the hyperlinks in the HyperLinkField object.

Note

When you set the DataNavigateUrlFields property with declarative code in an .aspx file, use a comma-separated list of field names.

Instead of using this property to bind the URLs of the hyperlinks to a field, you can use the NavigateUrl property to set the hyperlinks' URL to a static value. With this option, each hyperlink shares the same URL.

Note

If the DataNavigateUrlFields and the NavigateUrl properties are both set, the DataNavigateUrlFields property takes precedence.

Applies to