1
林建設動態菜單在我的MVC的項目,所以在我的控制器我有以下幾點:ASPNET MVC渲染服務器端@ Html.ActionLink
// list accounts
menu.Add(new Model.Custom.Menu() { Active = true, Url = "dashboard.html", Icon = "mdi mdi-account-card-details", Items = null, Text = "List Accounts" });
眼下dashboard.html
鏈接是硬編碼的,但要@Html.ActionLink
,所以我需要它呈現正確的道路。
任何線索?
'Url = Url.Action(...) – haim770