Good afternoon, I'm starting to write errors.
In my web config is installed as follows:
Error 404
<customErrors mode="On" defaultRedirect="~/Erro/Error-404.html">
<error statusCode="404" redirect="~/Erro/Error-404.html" />
</customErrors>
Error 403
<system.webServer>
<httpErrors errorMode="Custom">
<remove statusCode="403" />
<error statusCode="403" path="/Erro/Error-403.html" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
And for 500 error attempts in many ways but I did not succeed!
Can anyone help me?