I have had some trouble getting the menu control to work. Initially I was getting duplicate menus on PostBack so I solved that by only defining the menu items if it was an inital load but I still had to declare:
menu =
new C1WebMenu();menu.Layout = LayoutEnum.Horizontal;
menu.Padding =
Unit.Pixel(2);menu.ExpandEffect = C1WebExpandEffectEnum.Blind;
MenuPlaceHolder.Controls.Add(menu);
on Page_Init() to get the menu to appear on PostBack but this causes the menu to screw up and look erratic on the page and menu sub items only appear momentarily then disappear when an attempt is made to hover on them and click. Is there a WORKING example of these things actually working? I have the samples and the code doesn't work as provided. The code as provided causes duplicate menus to appear.