I am converting a VB application to C#.
As a novice in C#, I have a very basic question on how to deal with ToolBar settings.
The first line works in VB.
The second line is as close as I get but I am stumped with how to indicate the NavigateUrl portion.
CType(Me.RadToolBar1.Items(toolbar_current), Telerik.Web.UI.RadToolBarButton).NavigateUrl = "lulavision.aspx?show=" & Show_Alias.ToString
(Telerik.Web.UI.RadToolBarButton)RadToolBar1.Items[Toolbar_Current] = "lulavision.aspx?show=" + Show_Alias;