vgquotes/Src/VideoGameQuotes.Web/Controllers/HomeController.cs
2011-02-09 03:50:45 +00:00

13 lines
253 B
C#

using System.Web.Mvc;
namespace VideoGameQuotes.Web.Controllers {
[HandleError]
public class HomeController : Controller {
public ActionResult Index() {
ViewData["Message"] = "Welcome to ASP.NET MVC!";
return View();
}
}
}