As you can see this is a question from a none web developer. I would like to have an aspx page which, under certain circumstances, can generate a 401 error from code.Ideally it would show the IIS standard page. Any ideas are welcome.
|
Set Response.StatusCode and then - if you need to stop execution - call Response.End(). |
|||
|
|
|
|||||||||||
|
|
I think I still prefer:
I don't think the
Throwing a new exception definitely triggers custom errors. Also, you might be using an application-wide error logging facility, like ELMAH or something, and I don't think the Note: I see now the question said that, ideally, the standard IIS error page should be shown. Obviously, the custom error pages are not wanted. I would use the |
||||
|
|
|
You should be able to just use the following, according to MSDN.
Edit After seeing the other responses setting the status code would be more appropriate. |
||||
|
|
|
One additional comment. If a portion of the page has already been written to the output buffer then it is important that you clear any buffered content or the page may not appear correctly. This is quite likely in a templated environment. e.g. Master pages...
|
|||
|
|