using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using View_Engine_Demo.View_Engines; namespace View_Engine_Demo.Controllers { public class HomeController : Controller { public void Index() { RenderView("Index"); } public void About() { RenderView("About"); } } }