Table of Contents
Bindings Property

Gets a collection of bindings that map fields of the data source to the properties of the item.

Syntax
 public DataBindingCollection Bindings { get; }
Remarks

Use Bindings to define both the mappings between data fields and navigation item properties, and format strings. For example: <eo:Menu runat="server" DataFields="Country|State|City"> <TopGroup> <Bindings> <eo:DataBinding Property="Text-Html" DataField="WebSite" Depth="2" </eo:Bindings> </TopGroup> </eo:Menu> For more information about data binding, see data binding.

See Also