gpt4 book ai didi

html-helper - MVC 4 中的自定义 html 助手

转载 作者:行者123 更新时间:2023-12-03 20:05:16 26 4
gpt4 key购买 nike

我创建了助手类

namespace SEM.API.Helpers
{
public static class Navigation
{
public static string BuildSomething(this HtmlHelper helper)
{
return "empty";
}
}
}

并将命名空间添加到 webconfig <add namespace="SEM.API.Helpers" />但我仍然收到错误消息:

CS1061: "System.Web.Mvc.HtmlHelper"



重装了很多次都没解决

最佳答案

and added namespace to webconfig <add namespace="SEM.API.Helpers" />



确保您在 ~/Views/web.config 中执行此操作而不是在 ~/web.config .

另一件要尝试的事情是添加 @using对您的看法的指示:
@using SEM.API.Helpers
@Html.BuildSomething()

关于html-helper - MVC 4 中的自定义 html 助手,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10998827/

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