public IActionResult OnPost()
 {
     if (!ModelState.IsValid)
     {
         return(Page());
         // try this option
         //return BadRequest(ModelState);
     }
     repo.AddEvent(Event);
     return(RedirectToPage("Index"));
 }