Help, event not triggered

J

Jeff

Hey

asp.net 2.0

I'm having a menu on my webpage. In this menu I've placed some code at the
ItemClick event:
protected void mnuHeader_MenuItemClick(object sender, MenuEventArgs e)
{
switch (e.Item.Value)
{
case "test a":
SiteMapDataSource dataSource = (SiteMapDataSource)
lvSidebar.FindControl("SiteMapDataSource1");
return;
}
}


I set a breakpoint on this line "switch (e.Item.Value)", but while running
the applcation the brakpoint isn't triggered. So I wonder what I'm doing
wrong here?

Just in case, here is my menu:
<asp:panel ID="Panel1" runat="server" Height="50px" Style="z-index: 100;
left: 10px; position: absolute; top: 91px" Width="918px">
<asp:LoginView ID="lvMenu" runat="server">
<AnonymousTemplate>
&nbsp;
</AnonymousTemplate>
<LoggedInTemplate>
<asp:Menu ID="mnuHeader" runat="server" BackColor="#F7F6F3"
DataSourceID="SiteMapDataSource1"
DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="0.8em"
ForeColor="#7C6F57"
MaximumDynamicDisplayLevels="0" Orientation="Horizontal"
StaticDisplayLevels="2"
StaticSubMenuIndent="10px" Style="z-index: 100; left: 0px;
position: absolute;
top: 0px" OnMenuItemClick="mnuHeader_MenuItemClick">
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px"
/>
<DynamicHoverStyle BackColor="#7C6F57" ForeColor="White" />
<DynamicMenuStyle BackColor="#F7F6F3" />
<StaticSelectedStyle BackColor="#5D7B9D" />
<DynamicSelectedStyle BackColor="#5D7B9D" />
<DynamicMenuItemStyle HorizontalPadding="5px"
VerticalPadding="2px" />
<StaticHoverStyle BackColor="#7C6F57" ForeColor="White" />
</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server"
SiteMapProvider="LoggedIn" />
</LoggedInTemplate>
</asp:LoginView>
</asp:panel>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top