hi
I have this piece of code in the userControl:
Protected Sub RadMenu1_ItemClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs) Handles RadMenu1.ItemClick
Select Case e.Item.Text
Case "Invoice"
Label1.Text = "Invoice Administration"
End Select
End Sub
a Label control is also in the same userControl.
This userControl is used by a master page and in turn a default.aspx use this master page.
Now, the thing is that it works fine if i did not add a navigateUrl to the radmenu control (as expected it show on the label "Invoice Administration" when clicked on the Default.aspx page)
But when I add a url to the navigateUrl Property of the Radmenu. Is empty. How should i go about solving this? Thanks