Rank: Member Groups: Member
Joined: 5/15/2012 Posts: 18
|
Hi
I am trying to use the Menu control and need to know the name of the submenu item that was clicked. I am using an asp master page.
I have set raisesserverevent = True and have created the ItemClick subroutine but it simply does not fire.
What am I doing wrong?, Deos this work with a master page?
<eo:Menu runat="server" id="Menu1" ControlSkinID="None" Width="200px" RaisesServerEvent="True">
Protected Sub Menu1_ItemClick1(sender As Object, e As EO.Web.NavigationItemEventArgs) Handles Menu1.ItemClick Dim sbuf As String End Sub
This is in the site.master.vb
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,195
|
Hi,
Check if you have NavigateUrl set. A MenuItem will not raises server event if NavigateUrl is set.
Thanks!
|