if you're using the menu control you can do something like this in the menuitemdatabound event
Protected Sub Menu1_MenuItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemDataBound
If e.Item.Selected = True Then
e.Item.Selectable = False
End If
End Sub
------------------------------------------------
Jeff Turner (
simpleModus)
Don't forget to mark the correct answer for your
question to help out future visitors!