"资源未找到或暂时不可用" ASP.NET MVC 5中的错误

时间:2016-09-13 08:05:43

标签: c# asp.net-mvc

  

您正在寻找的资源(或其中一个依赖项)可以   已删除,更改名称,或暂时   不可用。请查看以下网址并确保其中包含该网址   拼写正确。

Index.cshtml

@{
    ViewBag.Title = "Index";
    Layout = "Null";
}

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
    <div>
        <p>Welcome to the first application of MVC</p>
    </div>
</body>
</html>

firstcintroller.cs

namespace mvcapp.Controllers
{ 
    public class firstController : Controller
    {
        // GET: first
        public ActionResult Index()
        {
            return View();
        }
    }
}

1 个答案:

答案 0 :(得分:0)

确保App_Start文件夹中的RouteConfig.cs文件中的控制器名称为“first”。

然后,在Mvc \ Views文件夹中创建一个名为“first”的文件夹,并将Index.cshtml放在第一个文件夹中并执行该项目。

有关详细信息,请参阅以下网址:

ASP.NET MVC Page Won't Load and says "The resource cannot be found"