MenuItemClick Event is not triggered when page derives from templatepage
Vote:
I've got this containing , and when clicking on the items I want it to trigger the MenuItemClicked event. But when the page derives from EPiServer TemplatePage, a problem occurs, and it doesn't trigger the event.
When inheriting from System.Web.UI.Page, it works perfectly.
Menu
Code behind, event.
protected void Menu1_MenuItemClick(object sender, MenuEventArgs e)
{
}
Ohhh, what to do?
protected void Menu1_MenuItemClick(object sender, MenuEventArgs e) { }
Ohhh, what to do?