如何在ASP中使用扩展方法。净MVC视图?

时间:2022-12-04 08:20:07

How do I access an extension method in an ASP.Net MVC View? In C# I do

如何访问ASP中的扩展方法。净MVC视图?在c#

using MyProject.Extensions;

and I remember seeing an XML equivalent to put in a view, but I can't find it anymore.

我记得看到一个XML等价于放入视图,但我再也找不到它了。

2 个解决方案

#1


46  

In View:

在视图:

<%@ Import Namespace="MyProject.Extensions" %>

Or in web.config (for all Views):

或在web。所有视图配置():

<pages>
  <namespaces>
    <add namespace="System.Web.Mvc" />
    <add namespace="System.Web.Mvc.Ajax" />
    <add namespace="System.Web.Mvc.Html" />
    <add namespace="System.Web.Routing" />
    <add namespace="System.Linq" />
    <add namespace="System.Collections.Generic" />

    <add namespace="MyProject.Extensions" />
  </namespaces>
</pages>

#2


14  

For pages using Razor / WebPages, you can include a using directive in your .cshtml page.

对于使用Razor / WebPages的页面,可以在.cshtml页面中包含一个使用指令。

@using MyBlogEngine;  

#1


46  

In View:

在视图:

<%@ Import Namespace="MyProject.Extensions" %>

Or in web.config (for all Views):

或在web。所有视图配置():

<pages>
  <namespaces>
    <add namespace="System.Web.Mvc" />
    <add namespace="System.Web.Mvc.Ajax" />
    <add namespace="System.Web.Mvc.Html" />
    <add namespace="System.Web.Routing" />
    <add namespace="System.Linq" />
    <add namespace="System.Collections.Generic" />

    <add namespace="MyProject.Extensions" />
  </namespaces>
</pages>

#2


14  

For pages using Razor / WebPages, you can include a using directive in your .cshtml page.

对于使用Razor / WebPages的页面,可以在.cshtml页面中包含一个使用指令。

@using MyBlogEngine;