带有 Razor 视图引擎的 MvcContrib MenuBuilder
下面的代码(在 .cshtml 文件内)导致菜单在文档流之外呈现,即 html 标记上方源代码中的第一行
@{
Html.Menu(
Menu.Begin(new[]
{
Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
}));
}
然而,在 webforms 项目中,以下工作正常:
<% Html.Menu(
Menu.Begin(new[]
{
Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
})); %>
我相信这两种语法应该产生在相同的结果中。
The below code (inside a .cshtml file) causes the menu to render outside of the flow of the document i.e. The first lines in the source above the html tag
@{
Html.Menu(
Menu.Begin(new[]
{
Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
}));
}
Yet in a webforms project, the following works:
<% Html.Menu(
Menu.Begin(new[]
{
Menu.Link(Url.Action("action1", new { controller="controller" }), "Action1"),
Menu.Link(Url.Action("action2", new { controller="controller" }), "Action2")
})); %>
I believe the two syntaxes should result in the same outcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以..删除大括号 {}
That should work.. Removing the braces {}
您应该认为 @( ) 相当于 <%= %>而不是 @{ } 转换为剃刀时。
You should think of @( ) being the equivalent of <%= %> rather than @{ } when converting to razor.