I have a problem with my sintak controller
on 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();
}
}
}
And have error:
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