Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started