";资源未找到或暂时不可用”;ASP.NET MVC 5中出现错误
本文关键字:MVC NET ASP 错误 资源 quot | 更新日期: 2023-09-27 18:06:57
您正在查找的资源(或其依赖项之一(可能已被删除、名称已更改或暂时不可用的请查看以下URL,并确保它是拼写正确。
索引.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();
}
}
}
确保控制器名称在App_Start文件夹中的yout RouteConfig.cs文件中为"first"。
然后,在Mvc''Views文件夹中创建一个名为"first"的文件夹,并将Index.chtml放在第一个文件夹中,然后执行项目。
有关更多信息,请参阅以下URL:
ASP.NET MVC页面获胜';t加载并说";找不到资源";