創建控制器我有對我的asp.net mvc
一個sintak controller
問題,得到錯誤,而在Asp.net的mvc與TDK
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();
}
}
}
而且有錯誤:
Error 1 The type or namespace name 'Toyota' could not be found (are you missing a using directive or an assembly reference?) e:\ExampleApplication\ExampleApplication\Views\Shared_Layout.cshtml 1 8 ExampleApplication