The custom 404 error page does not seem to work
Hi Imar,
When you include this in the custom Http 404 error page,
protected void Page_Load(object sender, EventArgs e)
{
Response.Status = â404 Not Foundâ;
Response.StatusCode = 404;
}
the custom page itself cannot be found and loaded to browser. Could this be a bug? Thanks.
|