我一直在开发一个MVC 4网络应用程序,但我找不到WebImage的引用位置。我还添加了对“System.Web.Helpers”的引用。我在控制器内,没有捷径,甚至没有帮助/提示来找到这个类。
public ActionResult Images()
{
WebImage w
}
我错过了什么?
答案 0 :(得分:2)
在添加对System.Web.Helpers(在System.Web.Helpers.dll中)的引用后添加using System.Web.Helper;
,您可以使用WebImage
class
或尝试
public ActionResult Images()
{
System.Web.Helpers.WebImage w =new System.Web.Helpers.WebImage("~/images/Desert.jpg");
}
根据您对以下图片
的评论像AntiFogery这样的类来自System.Web.WebPages (in System.Web.WebPages.dll)
我认为你添加了错误的引用。您需要添加System.Web.Helpers (in System.Web.Helpers.dll)
添加引用时,可以通过将鼠标指针移动到程序集名称上来检查dll详细信息,如下所示