Possible Duplicate:
How can I properly handle 404 in ASP.NET MVC?
I’ve made the changes outlined at 404 Http error handler in Asp.Net MVC (RC 5) and I’m still getting the standard 404 error page. Do I need to change something in IIS?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yet another solution.
Add ErrorControllers or static page to with 404 error information.
Modify your web.config (in case of controller).
Or in case of static page
This will handle both missed routes and missed actions.