using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace HibernateMVCTest.Controllers { public class HomeController : Controller { public ActionResult Index() { ViewData["Title"] = "Home Page"; ViewData["Message"] = "Welcome to ASP.NET MVC!"; return RenderView(); } public ActionResult About() { ViewData["Title"] = "About Page"; return RenderView(); } } }