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:
- on handling url I check if such real estate exists
- if not I throw
my own
RealEstateDontExistException - in Global.asax in handling error
of server I check if this error is
type of
RealEstateDontExistExceptionthen - 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 .
ErrorPage.aspxexists on server? – Waqas Raja Apr 8 '11 at 11:34