Razor エンジンを使用して新しい ASP.NET MVC 3 プロジェクトを作成しました。コントローラ フォルダにコントローラhomController.cs
を追加し、ビューを追加しました。
ビュー ( 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
どうしたの?