vgquotes/Src/VideoGameQuotes.Web/Controllers/HomeController.cs

13 lines
253 B
C#
Raw Normal View History

2011-02-09 03:50:45 +00:00
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();
}
}
}