I'm beginner in asp.net i just create a empty web-application and after that i create a controller but it is showing the error.
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.7.3056.0
here is my code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApplication1.Controllers
{
public class Welcome : Controller
{
// GET: Welcome
public string Index()
{
return "Hello World, this is ASP.Net MVC Tutorials";
}
}
}