using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using NzbDrone.Web.Models; namespace NzbDrone.Web.Controllers { [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Message"] = "Welcome to ASP.NET MVC!"; return View(); } public ActionResult About() { return View(); } public ActionResult Test() { var model = new TestModel(); return View(model); } [HttpPost] public ActionResult Test(TestModel model) { return View(); } } }