Ask a Question related to ASP.NET Security, Design and Development.
-
Rich #1
Custom Error pages
Hi All,
I have a windows authenticated web site - a sub directory
has been secured by denying various roles. When access is
denied the default error page for 401.2 is displayed -
How can I customise my own access denied page?
I have tried custom error tags in the web.config but that
doesnt seem to work, nor does changing the IIS error page
settings.
Any ideas?
Cheers,
Rich
Rich Guest
-
Custom Error Pages - 404 File not found & 301 redirect
Hello, We are preparing to launch a new site and would like to create a custom error page for 404 - File not found. I would also like to create... -
Displaying Custom Error Pages
I've got my '404 page not found' error page working by using IIS server to redirect users. Now I need to supply an error page when users enter... -
Cross Site Scripting & Custom Error Pages
Hi, I have been investigating CSS vulnerabilites within my application and have a question. If I added malicious script tags to the Url these are... -
custom error pages in asp
You have to set that URL as your 404 in IIS. Did you do that? Ray at work "Raphael Gluck" <iwish i could tell you @alas blame the spammers>... -
Custom error message in custom Web publishing
"Frank A. Bravo" wrote: There is a command , use it as part of an If statement... So, Nor records were found matching your search an... -
Ken Schaefer #2
Re: Custom Error pages
You can attempt to customise the page (and IIS will send the customised
page - you can check using network sniffer), but it is up to the browser to
decide what to display. Most (if not all) browsers will *not* display custom
content when the HTTP status from the server is 401 - they will either
display a logon dialogue box -or- they will display an "access denied" error
message (after three, or whatever, failed attempts). This is a security
measure on the part of the browser.
What you would need to do is intercept the 401.2 HTTP status, and change it
to something else (eg 200 OK), and then you can server whatever content you
want.
Cheers
Ken
"Rich" <anonymous@discussions.microsoft.com> wrote in message
news:07d601c503c0$5959aae0$a401280a@phx.gbl...> Hi All,
>
> I have a windows authenticated web site - a sub directory
> has been secured by denying various roles. When access is
> denied the default error page for 401.2 is displayed -
> How can I customise my own access denied page?
> I have tried custom error tags in the web.config but that
> doesnt seem to work, nor does changing the IIS error page
> settings.
>
> Any ideas?
>
> Cheers,
> Rich
>
Ken Schaefer Guest



Reply With Quote

