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.
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();
}
}
}