A
adiel_g
Hello, if you programmatically change the selected menu item (as
opossed to the user clicking on a menu item) on a ASP.NET 2.0 Menu
control as follows:
Menu Control:
<asp:Menu ID="mnuActions"....
Code to programmatically change the selected menu item:
Dim mi As MenuItem = Me.mnuActions.FindItem("Customers")
mi.Selected = True
The above code will not fire the MenuItemClick event. (This was
expected since the user did not click on the item)
My question is, is there another event that will detect when the
selected menu item was programmatically changed?
Thanks Before Hand,
Adiel
opossed to the user clicking on a menu item) on a ASP.NET 2.0 Menu
control as follows:
Menu Control:
<asp:Menu ID="mnuActions"....
Code to programmatically change the selected menu item:
Dim mi As MenuItem = Me.mnuActions.FindItem("Customers")
mi.Selected = True
The above code will not fire the MenuItemClick event. (This was
expected since the user did not click on the item)
My question is, is there another event that will detect when the
selected menu item was programmatically changed?
Thanks Before Hand,
Adiel