查看不从控制器显示

时间:2017-06-08 13:31:26

标签: c# asp.net-mvc

我有一个基本的控制器:

using System.Web Mvc;

namespace MainProject.Controllers
{
   public class Main : Controllers
   {
      public ActionResult Index()
      {
           return View();
      }
   }
}

有一个观点:

查看/     主要/         Index.cshtml

然而它并没有返回页面,只是找不到资源。我在这里缺少什么?

本地主机:60555 /主/索引

1 个答案:

答案 0 :(得分:1)

尝试下面更改的代码,它一定会对你有用

您的代码:

using System.Web Mvc;
    namespace MainProject.Controllers
    {
       public class Main : Controllers
       {
          public ActionResult Index()
          {
               return View();
          }
       }
    }

更改了代码:

  using System.Web Mvc;
    namespace MainProject.Controllers
    {
        public class MainController : Controller
        {

            public ActionResult Index()
            {
                return View();
            }

    }

希望它有用

由于

KARTHIK