sintak controller
上的asp.net mvc
,
using Toyota.Common.Web.Platform;
using FAMS.Models;
namespace FAMS.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult About()
{
return View();
}
}
}
并且有错误:
错误1类型或命名空间名称'丰田'无法找到(是 你错过了使用指令或程序集 参考?)e:\ ExampleApplication \ ExampleApplication \ Views \ Shared_Layout.cshtml 1 8 ExampleApplication
答案 0 :(得分:2)
这很可能是因为你错过了对丰田的提及。右键单击References并添加提到的引用。
答案 1 :(得分:0)
假设Toyota
引用是您从自己的class Library
或dll引用的。
如果该项目/ dll有任何问题。引用的项目不会在此解决方案中正确加载dll。因此,您可能会收到错误(如您所见)。
根据@Khaltazar
回答,您可能会错过添加的引用。您已在控制器中将NameSpace
引用为using Toyota.Common.Web.Platform;
。但请将reference dll
添加到您的current project references
。
最后Clean
解决方案和Build / ReBuild
。
如果referred dll is being process
与其他人(Locked
可能是{{1}}),请停止此过程。