MVC Required field validation not working
Use ModelState.IsValid property
public ActionResult Create(Client client)
{
if(ModelState.IsValid)
{
// TODO: Add code here
ClientRepository rep = new ClientRepository();
rep.AddClient(client);
rep.Save();
return RedirectToAction("Index");
}
return View(client);
}