Ask a Question related to ASP.NET Security, Design and Development.
-
Kylin #1
<deny users="?" /> <allow users="*" />
<!-- security -->
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
I know the <deny user="?" /> mean that deny the anonymous user ,
And I know the <allow user="*"> mean that allow all the user,
but they are together ,
what is the meaning ?
--
FireCrow Studio
Kylin Garden
ICQ:156134382
Kylin Guest
-
Publisher users can't access pages because "user is editing it" - but they aren't! wtf?
Man, if it isn't one thing, it's another.... I've got DW8.0.2 and the Studio 8 suite. I've created a site in DW and have enabled Contribute... -
How do you make "Images > From Website" available tonon-admin users?
From the admin side, we are able to insert pictures using Images > From Website rather than going into shared assets. However, the "From Website"... -
Domain does not show up as a "location" for choosing users (server 2003)
I have a windows 2003 server. I added a new Windows 2003 server as a member server. However when I try to set permissions on a folder on this 2003... -
Vacation works for "real" email address but not for aliases -- except for some users
Forgive me for my ignorance but sendmail is greek to me. So here's my problem, with as much info as I can think of. I am running Red Hat 9 with... -
Forms Authentication - "Deny users = ?" necessary
Thanks for your reply Hernan. I can't believe Authentication and Authorization are mixed... If I want to identify/authenticate a user (for... -
Yunus #2
Re: <deny users="?" /> <allow users="*" />
web.config file is interpreted line by line. This means deny anonymous user
and accepten users which are authenticated. When a user request wants to be
authorized, ASP.NET looks if it is a guest, if yes denies, otherwise allows
user.
Try to change line order and see what happens like:
<!-- security -->
<authorization>
<allow users="*" />
<deny users="?" />
</authorization>
--
Thanks,
Yunus Emre ALPÖZEN
BSc, MCAD.NET
"Kylin" <com> wrote in message
news:%phx.gbl...
Yunus Guest
-
Ravichandran #3
RE: <deny users="?" /> <allow users="*" />
"?" stands for anonymous users and "*" for all users. So,
<allow users="Jv"/>
<deny users="?"/>
will allow user "Jv" but deny all anonymous users. You can use to separate
multiple identiies.
<allow users="Jv, Kylin"/>
<deny users="?"/>
with regards,
J.v.
"Kylin" wrote:
Ravichandran Guest



Reply With Quote

