我刚刚使用 Razor 引擎创建了一个新的 ASP.NET MVC 3 项目。我在控制器文件夹中添加了一个控制器,然后在homController.cs
我添加了一个视图。
View ( index.cshtml
) 只有以下代码:
@{
ViewBag.Title = "Home";
}
<h2>Home</h2>
当我开始调试时,它向我显示了这个错误:
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.225
有什么问题?