Ask a Question related to ASP.NET Security, Design and Development.
-
Alex Dinu #1
Forms Authorization
I'm setting up my authorization in web.config to reject
everybody and allow users with a specific role to a folder.
When a user that does not have the role somehow ends up
requesting a page in the restricted folder, I get the
login page, which is what I expect.
When they log in again, it actually redirects the user to
view the page which the user was just rejected from
viewing?
Assuming that it's not a caching issue, my thinking is
that the role is still not given to the user the second
time they log on, so they should be re-directed to the
login page again.
I'm keeping the principal data in a cookie which is
written to the ticket in the logon and in
Application_AuthenticationRequest method in Global.asax to
make sure the cookie timeout is refreshed on all
navigations.
Alex
Alex Dinu Guest
-
Role authorization
I use custom authentication and I set the identity with following line FormsAuthentication.SetAuthCookie(username.Text, False) How do I set the... -
URL Authorization
Hi All, I am trying to write several applications, for external users. They will use forms authentication to login. My question concerns url... -
Authorization Problem
I have an asp page with just Integrated Windows authentication set. It works fine if it is accessed with just the server name, but it prompts... -
Dynamic Forms authorization
Hi all I'm creating web application with windows integrated security. Every window user is member of one of the groups of managers or operators.... -
ASP.NET Authorization
I'd like to use role in Forms authentication and I found the following words from .net SDK about ASP.NET Authorization. " Identifies a targeted...



Reply With Quote

