I am trying to handle a button event and redirect the application to a specific page (http://localhost:51443/Views/Shared/Error.cshtml
), but while executing the line RedirectResult("~/Views/Shared/Error.cshtml")
I am getting the exception as
Error from the application:
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /Views/Shared/Error.cshtml
While browsing the page I am getting the same exception. Can anyone advise how to handle this redirection error, previously in aspx using HttpResponse I would be able to redirect without any issue.