i have a form which allows the user to key in the data and then submit. if everything works well on this action result, then i will redirect the user back to a thank you pag
Use this code
@using (Html.BeginForm("FindResults", "COntrollerName", FormMethod.Get, new { id = "SearchForm" })) {} public ActionResult Index() { return view(); } [HttpGet] public ActionResult FindResults(FindIssueModel model) { }