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.
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 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.
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. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note