vote up 0 vote down star

I have an asp.net website (SQL Server, Windows 2003, IIS 6) and I am using google.com/analytics/ to track visits. It all works fine.

Now I would like to use Google Webmaster to get better information about my site but when I try to verify it by uploading a html file I get this error:

"We've detected that your 404 (file not found) error page returns a status of 200 (Success) in the header."

Any ideas - how to fix this?

flag

60% accept rate

1 Answer

vote up 1 vote down

Set the StatusCode of the Response object manually. Put something like this in your 404 page's code behind:

protected override void Render(HtmlTextWriter writer)
{
    base.Render(writer);
    Response.StatusCode = 404;
}
link|flag
Do you have any idea how? – asperous.us Jul 20 at 22:09
Updated with some code – Colin Mackay Jul 20 at 22:12
By any chance does it also let you verify the site through a meta tag? If so, you might do that instead. – Otis Jul 20 at 22:23

Your Answer

Get an OpenID
or

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