How to return 'own' 404 custom page?
问题 In case if error occurred on my web site I do the following: Server.Transfer("/error.aspx"); and that page has code: protected void Page_Load(object sender, EventArgs e) { ... Response.StatusCode = 404; } If I work on the localhost then together with 404 status returned for the page, page displays 'proper error description'. Once I published the same code to the internet all pages with errors are still displayed with 404 status code, but the don't have the content. Instead, they have the