vote up 10 vote down star
3

If given the route:

{FeedName}/{ItemPermalink}

ex: /Blog/Hello-World

If the item doesn't exist, I want to return a 404. What is the right way to do this in ASP.NET MVC?

flag

79% accept rate
Thanks for asking this question btw. This is going in my standard project additions :D – Erik van Brakel Feb 1 at 0:37
Glad I could help :) – Daniel Schaffer Feb 1 at 0:38

3 Answers

vote up 8 vote down check

Shooting from the hip (cowboy coding ;-)), I'd suggest something like this:

Controller:

public class HomeController : Controller
{
	public ActionResult Index()
	{
		return new HttpNotFoundResult("This doesn't exist");
	}
}


HttpNotFoundResult:

using System;
using System.Net;
using System.Web;
using System.Web.Mvc;

namespace YourNamespaceHere
{
    /// <summary>An implementation of <see cref="ActionResult" /> that throws an <see cref="HttpException" />.</summary>
    public class HttpNotFoundResult : ActionResult
    {
        /// <summary>Initializes a new instance of <see cref="HttpNotFoundResult" /> with the specified <paramref name="message"/>.</summary>
        /// <param name="message"></param>
        public HttpNotFoundResult(String message)
        {
            this.Message = message;
        }

        /// <summary>Initializes a new instance of <see cref="HttpNotFoundResult" /> with an empty message.</summary>
        public HttpNotFoundResult()
            : this(String.Empty) { }

        /// <summary>Gets or sets the message that will be passed to the thrown <see cref="HttpException" />.</summary>
        public String Message { get; set; }

        /// <summary>Overrides the base <see cref="ActionResult.ExecuteResult" /> functionality to throw an <see cref="HttpException" />.</summary>
        public override void ExecuteResult(ControllerContext context)
        {
            throw new HttpException((Int32)HttpStatusCode.NotFound, this.Message);
        }
    }
}
// By Erik van Brakel, with edits from Daniel Schaffer :)

Using this approach you comply to the framework standards. There already is a HttpUnauthorizedResult in there, so this would simply extend the framework in the eyes of another developer maintaining your code later on (you know, the psycho who knows where you live).

You could use reflector to take a look into the assembly to see how the HttpUnauthorizedResult is achieved, because I don't know if this approach misses anything (it seems too simple almost).


I did use reflector to take a look at the HttpUnauthorizedResult just now. Seems they're setting the StatusCode on the response to 0x191 (401). Although this works for 401, using 404 as the new value I seem to be getting just a blank page in Firefox. Internet Explorer shows a default 404 though (not the ASP.NET version). Using the webdeveloper toolbar I inspected the headers in FF, which DO show a 404 Not Found response. Could be simply something I misconfigured in FF.


This being said, I think Jeff's approach is a fine example of KISS. If you don't really need the verbosity in this sample, his method works fine as well.

link|flag
Hope you don't mind, I added a bit to your class :) – Daniel Schaffer Feb 1 at 0:47
Yeah, I noticed the Enum as well. As I said, it's just a crude example, feel free to improve upon it. This is supposed to be a knowledgebase after all ;-) – Erik van Brakel Feb 1 at 0:52
I think I went a bit overboard... enjoy :D – Daniel Schaffer Feb 1 at 0:56
FWIW, Jeff's example also requires that you have a custom 404 page. – Daniel Schaffer Feb 1 at 1:11
One problem with throwing HttpException instead of just setting the HttpContext.Response.StatusCode = 404 is if you use OnException Controller handler (as I do), it will catch the HttpExceptions too. So I think just setting the StatusCode is a better approach. – Igor Brejc Dec 19 at 15:43
vote up 3 vote down

We do it like so; this code is found in BaseController

/// <summary>
/// returns our standard page not found view
/// </summary>
protected ViewResult PageNotFound()
{
    Response.StatusCode = 404;
    return View("PageNotFound");
}

called like so

public ActionResult ShowUserDetails(int? id)
{        
    // make sure we have a valid ID
    if (!id.HasValue) return PageNotFound();
link|flag
is this action then wired up to a default route? Can't see how it gets to get executed. – Christian Dalager Feb 1 at 8:50
I think he's got a custom error view or something. – Daniel Schaffer Feb 1 at 22:58
Could be running it like this: protected override void HandleUnknownAction(string actionName) { PageNotFound().ExecuteResult(this.ControllerContext); } – TreeUK Jul 11 at 22:21
vote up 3 vote down
throw new HttpException(404, "Are you sure you're in the right place?");
link|flag

Your Answer

Get an OpenID
or

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