您好,
我使用HTML.TreeView来渲染我的代码结构:
<%= Html.TreeView("CategoryTree",
Model.CategoryList,
l => l.ChildList,
l => l.Name + " / <a id=\"treeLnk" + l.Id + "\" href=\"JavaScript: OpenAddDialog('" + l.Name + "', " + l.Id + ") \" title=\"Lägg till\" >Lägg till</a>" +
" / <a id=\"treeLnk" + l.Id + "\" href=\"JavaScript: OpenChangeNameDialog('" + l.Name + "', " + l.Id + ") \" title=\"Ändra namn\" >Ändra namn</a>" +
" / <a id=\"treeLnk" + l.Id + "\" href=\"JavaScript: OpenDeleteDialog('" + l.Name + "', " + l.Id + ") \" title=\"Tabort\" >Tabort</a>") %>
这项工作正常,但现在我需要包含一个重定向到另一个控制器\动作的动作。
我尝试过广告Html.ActionLink,但这不起作用?
答案 0 :(得分:1)
您可以指定使用哪个TreeView助手,因为没有内置的ASP.NET MVC,但尝试这样:
<%= Html.TreeView("CategoryTree",
Model.CategoryList,
l => l.ChildList,
l => l.Name + Html.ActionLink("Link Text", "action", "controller").ToHtmlString())
%>