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?

link|improve this question

59% accept rate
For reference: stackoverflow.com/questions/347281/… – Bobby Cannon Jan 25 at 21:43
feedback

1 Answer

up vote 2 down vote accepted

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|improve this answer
Do you have any idea how? – asperous.us Jul 20 '09 at 22:09
Updated with some code – Colin Mackay Jul 20 '09 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 '09 at 22:23
feedback

Your Answer

 
or
required, but never shown

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