Menu.DynamicItemTemplate Property
.NET Framework 3.0
Gets or sets the template that contains the custom content to render for a dynamic menu.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[TemplateContainerAttribute(typeof(MenuItemTemplateContainer))] public: property ITemplate^ DynamicItemTemplate { ITemplate^ get (); void set (ITemplate^ value); }
/** @property */ public ITemplate get_DynamicItemTemplate () /** @property */ public void set_DynamicItemTemplate (ITemplate value)
public function get DynamicItemTemplate () : ITemplate public function set DynamicItemTemplate (value : ITemplate)
Not applicable.
Property Value
A ITemplate that contains the custom content for a dynamic menu. The default value is null, which indicates that this property is not set.Instead of using the built-in rendering for a dynamic menu, you can define your own look and feel for a dynamic menu item by using the DynamicItemTemplate property. To specify a custom template for a dynamic menu item, first place <DynamicItemTemplate> tags between the opening and closing tags of the Menu control. You can then list the contents of the template between the opening and closing <DynamicItemTemplate> tags. You can further control the style of a dynamic menu by using the DynamicItemFormatString property.
Community Additions
ADD
Show: