Gets or sets the URL to link to when a menu item to which the System.Web.UI.WebControls.MenuItemBinding object is applied is clicked.
Documentation for this section has not yet been entered.
When the System.Web.UI.WebControls.Menu control is bound to a data source, use the MenuItemBinding.NavigateUrl property to specify the URL to bind to the MenuItem.NavigateUrl property of a System.Web.UI.WebControls.MenuItem object. This URL is shared with all menu items to which the System.Web.UI.WebControls.MenuItemBinding object is applied. When the user clicks the menu item, the user is taken to the specified URL.
You can override the URL for an individual menu item by setting its MenuItem.NavigateUrl property directly.
Instead of using this property to navigate to the same URL in each menu item, you can also bind the MenuItem.NavigateUrl property of a System.Web.UI.WebControls.MenuItem object to a field of a data source by setting the MenuItemBinding.NavigateUrlField property. When rendered, the MenuItem.NavigateUrl property of each menu item to which the System.Web.UI.WebControls.MenuItemBinding object is applied contains the corresponding value from the field.
If the MenuItemBinding.NavigateUrl and MenuItemBinding.NavigateUrlField properties are both set, the MenuItemBinding.NavigateUrlField property takes precedence.