I have a view (Index.cshtml) with a submit button. When the submit button is clicked, it calls an action (Action01) within the controller (TestController.cs) so at the end o
You have to specify the name of the custom view and its related model in Controller Action method.
public ActionResult About() { return View("NameOfViewYouWantToReturn",Model); }