HyperLinkField::DataNavigateUrlFields Property

 

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

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
[TypeConverterAttribute((StringArrayConverter^::typeid))]
property array<String^>^ DataNavigateUrlFields {
	virtual array<String^>^ get();
	virtual void set(array<String^>^ value);
}

Property Value

Type: array<System::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.

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.

System_CAPS_noteNote

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.

System_CAPS_noteNote

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

.NET Framework
Available since 2.0
Return to top
Show: