using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Registration.Models; namespace Registration.Controllers { public class HomeController : Controller { // // GET: /Home/ [HttpGet]//Run action method on first request public ActionResult Index() { return View(); } [HttpPost]//Run action method on form submission public ActionResult Index(string name) { return RedirectToAction("Details", "Home", new { name = name }); } } }