everyone! I have problem with asp.net error exceptions. I'm working on real estate web-app and google have made indexes for links on real estates. But after some time period several real estates don't exist anymore in db. Problem is next: if user click on link for real estate, which doesn't exist anymore in db, I need return my custome error page with status code 404.

I try to do that in next way:

  1. on handling url I check if such real estate exists
  2. if not I throw my own RealEstateDontExistException
  3. in Global.asax in handling error of server I check if this error is type of RealEstateDontExistException then
  4. I set:
Responce.StatusCode = 404;
Server.CleanError();
Server.Transfer("~/ErrorPage.aspx");

I need show aspx page with status code 404. On local host it works fine. But if I try get not existed real estate from production server, then web browser show me next text

"The resource you are looking for has been removed, had its name changed, or is temporarily unavailable." with status code 404.

Can someone help me? Thanks .

link|improve this question

65% accept rate
did you confirmed that ErrorPage.aspx exists on server? – Waqas Raja Apr 8 '11 at 11:34
feedback

2 Answers

It appears that your production web server is showing its own error page. Please configure it (IIS) to show the custom error page on 404 error - see this article for how to do that on IIS7 (and this for IIS 6.0).

link|improve this answer
feedback

Maybe your ErrorPage is too small for HTTP 404 in Internet Explorer(should have more than 10 lines).

Have a look at these ressources:

This is the registry-key that the IE uses to determine the minimum size:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\ErrorThresholds
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.