Question: Whenever I Enter an invalid entry, the code catches the exception but updates the view anyways, please help me fix this . public ActionResult ManagePortfolioGridCreate([DataSourceRequest]

Whenever I Enter an invalid entry, the code catches the exception but updates the view anyways, please help me fix this .

public ActionResult ManagePortfolioGridCreate([DataSourceRequest] DataSourceRequest request, ManagePortfolioGridViewModel vm) { try { var result =_adminBll.CreatePortfolio(vm); return Json(new[] { result }.ToDataSourceResult(request, ModelState));

} catch (Exception e) { Log.Error(e.Message);

ModelState.AddModelError(string.Empty, e.Message); return Json(new[] { vm }.ToDataSourceResult(request, ModelState));

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!