In my page load I check something, and I want to display the standard Access Denied message without going through the hassle of creating a page to redirect to.
Is there an easy way?
|
|
In my page load I check something, and I want to display the standard Access Denied message without going through the hassle of creating a page to redirect to. Is there an easy way?
|
||
|
|
|
|
|
||||||||
|
|
|
I'd do something like
|
||
|
|
|
|
To send this before any other output, you have a couple of options. One, create a HTTPHandler module, add this to web.config. This sees ASP.NET pipeline events before the page gets control, so if you can determine at that point that you don't want the page to run, you can send the 401 before the page does anything. The handler inherits IHTTPHandler, so start searching on that interface definition for documentation. Second, you can hook into the page events PreInit and Init, and send the 401 before the Page Load method starts. Since the page class is created by this time, you can also set a flag in the page object that other methods can check to see if the page is responding with 401. |
||
|
|
|
|
You want to return a HTTP return code of 401 ("access denied") So,
should do the trick |
||
|