I want to simulate this error so I can check a generic error page is displayed, not the HTTP 500 one, in light of the recent security vulnerability.

We include special processing in the site itself for 404 and 403 so I want to make sure that errors without special processing work too.

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted
throw new Exception();

This will generate a HTTP 500

link|improve this answer
That was exactly was I going to say (: – Erik Escobedo Sep 20 '10 at 14:46
Me too :) beat us to it! – Alex Key Sep 20 '10 at 14:47
Many thanks, this worked perfectly. – ger Sep 20 '10 at 14:53
feedback

I think you can do this by overriding page init and adding the 500 status code to the response like the following:

protected void Page_Init(object sender, EventArgs e)
{
    Response.Clear();
    Response.StatusCode = 500;
    Response.End(); 
}

Enjoy!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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