Posted
on Jun 6, 2012
(permalink)
Thanks for your answer. However, i realized what i need to do is just route to an action in controller:
@(Html.Telerik().Menu() _
.Name("ToolsMenu") _
.Items(Function(items)
items.Add().Text("Export to CSV").Action("ExportToCSV", "Home")
End Function) _
.Render()
Is this the correct syntax for adding an action link to menu item in VB.NET. I get a syntax error: "Expression does not produce a value"
Thank you.