15

我创建了一个扩展方法并将其命名空间包含在我的web.config文件中。扩展方法工作正常,测试代码可以正常访问。问题是,我仍然收到与未找到命名空间有关的错误。

我收到的 ASP .NET 错误消息是:

CS1061:“System.Uri”不包含“IsCurrentUrl”的定义,并且找不到接受“System.Uri”类型的第一个参数的扩展方法“IsCurrentUrl”(您是否缺少 using 指令或程序集引用?)

下面是各自的代码。

网络配置:

<system.web>
    <httpRuntime targetFramework="4.5" />
    <compilation debug="true" targetFramework="4.5" />
    <pages>
        <namespaces>
            <add namespace="System.Web" />
            <add namespace="System.Web.Helpers" />
            <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.Web.WebPages" />
            <add namespace="MyMainSite2.Library.Extensions" />
        </namespaces>
    </pages>
</system.web>

扩展方法代码:

namespace MyMainSite2.Library.Extensions
{
    public static class UriExtensions
    {
        #region Public Static Methods

        public static bool IsCurrentUrl(this Uri uri, string url)
        {
            if (String.IsNullOrWhiteSpace(url))
                return false;

            url = url.Trim().ToLower();
            string absolutePath = uri.AbsolutePath.Trim().ToLower();

            if (!url.StartsWith("/") && absolutePath.StartsWith("/"))
                absolutePath = absolutePath.Remove(0, 1);

            bool match = absolutePath == url;

            return match;
        }

        #endregion
    }
}

剃须刀代码:

@model MyMainSite2.UI.Web.Models.Shared.TopMenuModel

@foreach (var item in this.Model.Items)
{
    if(this.Request.Url.IsCurrentUrl(item.Url)) // this line is failing because UriExtensions.IsCurrentUrl is not being found
    {
        @:<li class="current">
    }
    else
    {
        @:<li>
    }

    @:<a href="@item.Url">@item.Text</a></li>
}
4

2 回答 2

23

petro.sidlovskyy 给出了答案。

我将命名空间添加到主 Web.config 而不是视图的 Web.config。

当我将命名空间添加到Views文件夹中的Web.config时,该命名空间被视图识别,从而问题解决了。

于 2012-08-30T13:53:53.957 回答
0

我只想发布这个问题已经好几个月了,我按照 ASP.NET 网站上的指南逐行进行操作,我能够为 Razor 文件获取 Intellisense。

这是链接:http ://www.asp.net/mvc/overview/releases/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5 -and-web-api-2

我希望这也有助于防止其他人脱发。

于 2015-12-22T02:06:24.147 回答