vote up 0 vote down star

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?

flag

78% accept rate

4 Answers

vote up -1 vote down check
Response.Clear()    
Response.Write("Access Denied")
Response.End
link|flag
Perfect! . . . . ! – SLC Oct 28 at 11:05
2  
It would not work if there were some other stuff already written to the output. At least, do a Response.Clear() beforehand. If you want the standard http way of saying access denied, using StatusCode is the way to go, though. – Yann Schwartz Oct 28 at 11:08
Quite right (response.clear) – rdkleine Oct 28 at 11:47
vote up 0 vote down

I'd do something like

throw new HttpException(401, "Access Denied");
link|flag
vote up 1 vote down

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.

link|flag
vote up 12 vote down

You want to return a HTTP return code of 401 ("access denied")

So,

Response.Clear();
Response.StatusCode = 401;
Response.End();

should do the trick

link|flag
This is definitely the better answer. Other applications requesting your page will look at the status code and be able to determine what happened. – amdfan Oct 28 at 13:02

Your Answer

Get an OpenID
or

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