3

我决定在我的新项目中使用 ASP.NET MVC、S#arp Architectur 和 Spark View Engine。

首先,我在 S#arp 的帮助下创建了一个新项目。

我试图将 S#arp Architectur 的视图更新为 .spark 文件。

除了剩下一个例外之外,这很好。在 HTMLHelper 类中找不到 Application.spark 中使用的 ActionLinkForAreas 方法:

error CS1061: 'System.Web.Mvc.HtmlHelper' does not contain a definition for 'ActionLinkForAreas' and no extension method 'ActionLinkForAreas' accepting a first argument of type 'System.Web.Mvc.HtmlHelper' could be found (are you missing a using directive or an assembly reference?)

调用 Application.spark:${Html.ActionLinkForAreas(c => c.Index(), "Home")}

奇怪的是,在我添加 Spark View Engine 之前它就起作用了

我将衷心感谢您的帮助

4

1 回答 1

2

只是一个猜测,但我认为您需要导入SharpArch.Web.Areas命名空间,以便它可以在 Spark 文件中使用。

在您的 Spark 配置中执行以下操作:

var settings = new SparkSettings(); 
settings.AddNamespace("SharpArch.Web.Areas");
engines.Add(new SparkViewFactory(settings));

您也可以在顶部的特定 .spark 文件中执行此操作:

<use namespace="SharpArch.Web.Areas" />
于 2010-01-10T21:36:53.417 回答