Science, asked by DHRUV5474, 1 year ago

How can we do exception handling in MVC?

Answers

Answered by rjgolu
4
In ASP.NET MVC we have a larger list of ways to handle exception such as:

Try-catch-finally.Overriding OnException method.Using the [HandleError] attribute on actions and controllers.Setting a global exception handling filter.Handling Application_Error event.Extending HandleErrorAttribute.

Similar questions