HyperLinkField.DataNavigateUrlFields Property
Assembly: System.Web (in system.web.dll)
[TypeConverterAttribute(typeof(StringArrayConverter))] public: virtual property array<String^>^ DataNavigateUrlFields { array<String^>^ get (); void set (array<String^>^ value); }
/** @property */ public String[] get_DataNavigateUrlFields () /** @property */ public void set_DataNavigateUrlFields (String[] value)
public function get DataNavigateUrlFields () : String[] public function set DataNavigateUrlFields (value : String[])
Not applicable.
Property Value
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.
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. |
Note: