Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an action that takes in a string that is used to retrieve some data. If this string results in no data being returned (maybe because it has been deleted), I want to return a 404 and display an error page.

I currently just use return a special view that display a friendly error message specific to this action saying that the item was not found. This works fine, but would ideally like to return a 404 status code so search engines know that this content no longer exists and can remove it from the search results.

What is the best way to go about this?

Is it as simple as setting Response.StatusCode = 404?

share|improve this question

6 Answers

up vote 28 down vote accepted

There are multiple ways to do it,

  1. You are right in common aspx code it can be assigned in your specified way
  2. throw new HttpException(404, "Some description");
share|improve this answer
1  
One thing to watch out for is that if you have a customError page set up to handle 404 then this error page will return 200 (the not found page was found... :-( ). I tend to throw the exception from say BlogController and have the NotFound action set the proper response code. – Nigel Sampson Jun 1 '10 at 22:26
2  
I ended up doing: Response.StatusCode = 404; Response.TrySkipIisCustomErrors = true; return View("MyCustomView"); This works perfectly in my situation. – The Flower Guy Jun 2 '10 at 13:42

In ASP.NET MVC 3 and above you can return a HttpNotFoundResult from the controller.

share|improve this answer

I've used this:

Response.StatusCode = 404;
return null;
share|improve this answer
Thank you. This looks way better than throwing a costly exception on server. Wonder if the 404 would be logged in IIS logs... ideally it would be. – fozylet Jan 29 '12 at 3:00

Code :

if (id == null)
{
  throw new HttpException(404, "Your error message");//RedirectTo NoFoundPage
}

Web.config

<customErrors mode="On">
  <error statusCode="404" redirect="/Home/NotFound" />
</customErrors>
share|improve this answer

In NerdDinner eg. Try it

public ActionResult Details(int? id) {
    if (id == null) {
        return new FileNotFoundResult { Message = "No Dinner found due to invalid dinner id" };
    }
    ...
}
share|improve this answer
Thanks, but behind the scenes, that throws an HttpException similar to suggestion number two in Dewfy's post. I am looking for a bit more control so I can display a nice error page specific to the action, not just redirecting to the controller / global 404 page. Looks as though setting the status code and returning to a custom view is the way to go for my situation. – The Flower Guy Jun 1 '10 at 15:29

I use:

Response.Status = "404 NotFound";

This works for me :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.