I have a controller action like this:

public ActionResult Index(string url)
{
     var pageTitle = url.Split('/')[0];
     var page = Services.PageService.GetPage(pageTitle);

     if (page == null)
     {
         throw new HttpException((Int32) HttpStatusCode.NotFound, "NotFound");
     }

      return View(page);
 }

Everytime I am debugging my site, when the HttpException is thrown I get a prompt from Visual Studio notifying me that the exception was unhandled by user code.

I guess I just want somebody to clarify that what I am doing is correct, and that this notification can be dismissed without worry. The event still bubbles up to the Application_Error method in my Global.asax file where I am actually handling HttpException's, so as far as I can tell the only problem is the inconvenience of VS telling me every time this exception is thrown.

link|improve this question

Yup looks right to me, see tugberkugurlu.com/archive/… – Luke McGregor Feb 13 at 9:40
feedback

2 Answers

up vote 0 down vote accepted

I guess I just want somebody to clarify that what I am doing is correct, and that this notification can be dismissed without worry.

Yes, what you are seeing is called a first chance exception. VS debugger notifies you of all exceptions occurring in your code. If you have a proper handler for this exception you should be fine.

link|improve this answer
Hi again Darin, thanks for the quick answer that squashed any worries I had. – Chris Paynter Feb 13 at 9:44
feedback

I assume you want to return the http code (a 404 in this case) to the user/consumer of your page. So you should rather do this:

public ActionResult Index(string url)
{
     var pageTitle = url.Split('/')[0];
     var page = Services.PageService.GetPage(pageTitle);

     if (page == null)
     {
        return new HttpNotFoundResult();
     }
      return View(page);
 }

The HttpNotFoundResult is a new ActionResult in asp.net-mvc3, there is also a protected method HttpNotFound() as part of the controller class which does the same thing. In both cases you can also supply a message string.

Returning an ActionResult is also more graceful I think in terms of unit-testing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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