gpt4 book ai didi

asp.net-mvc - 如何在 App_Code 文件夹中的 Razor View 中使用 Url.Action

转载 作者:行者123 更新时间:2023-12-01 17:43:41 26 4
gpt4 key购买 nike

如何在 App_Code 文件夹中的 Razor 帮助程序中使用 Url.Action() ?

我按照Why I cant use Html.RenderPartial in razor helper view File in App_Code Folder?尝试过

@using System.Web.Mvc.Html
@helper Tabel(System.Web.Mvc.HtmlHelper html)
{
@Html.Raw(Url.Action("Index", "Home"))
}

但是编译错误

CS0103: The name 'Url' does not exist in the current context

使用ASP.NET MVC4和jquery。

最佳答案

Html.Raw() 使用 HtmlHelper 类,但 Url.Action() 使用 UrlHelper Class所以你也需要通过它

@using System.Web.Mvc
@helper Tabel(HtmlHelper html, UrlHelper url)
{
html.Raw(url.Action("Index", "Home"))
}

关于asp.net-mvc - 如何在 App_Code 文件夹中的 Razor View 中使用 Url.Action,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30019586/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com