I have a created a custom exception handler to handle all unhandled exceptions in MVC application and logging error details in database.
The problem is -it logs the exception but also redirects to Error page.
I want user to stay on the same view whenever error comes and some generic message should be displayed to the user like 'Error while saving data'.
I have removed defaultRedirect="Error" from below setting but still it redirects
<customErrors mode="On" ></customErrors>
How to achieve this functionality.