// It's a good practice to keep the name of the action method equals to name of the action URL
 public ActionResult AddNewContact(Contact contact)
 {
     repo.AddNewContact(contact);
     return(RedirectToAction("Index")); // client-side redireaction
 }