Ask a Question related to ASP.NET Security, Design and Development.
-
richard #1
Authorisation Issue
Hi,
I have an asp.net web site. I want 1 page to be accessed by a group ( which
I have set up on the web server). The remaining web pages can be accessed by
anyone.
In the web.config file I have used these settings:
<authorization>
<allow users="*" />
</authorization>
<location path="Support.aspx">
<system.web>
<authorization>
<allow roles="Server/MyGroup" /><deny users="*" />
</authorization>
</system.web>
</location>
With these settings, access for the users in the group is extremely slow for
that one page - whereas access to the other pages in the directory is
normal.
If I remove the location section from the web.config file their access to
that web page reverts to the speed of the other web pages. How can I
resolve this?
Cheers,
Richard.
richard Guest
-
Am I the only one still having this issue
I realize IE put a fix in place in April 2008 for swf flash to no longer require click to activate. Am I the only one who still has this issue. I am... -
user authorisation
building this into our intranet at work and no matter weather it's a new page I've built or an old one, or a new user or an old one..... every... -
Quicktime Internet Authorisation - again.
Hi Thanks very much for your reply Boaz. I have gone through the Xtras as you suggested, and checked "download if needed" on the Quicktime one.... -
non-php issue
hi everyone, could someone recommend a security mailing list, please? or you may like to answer my question below: i'm currently using... -
Authorisation in ASP
I;m trying to use an authorisation script in my page - the only problem is - only recently the "firewall" dialog box has popped up with a new... -
Keith #2
Authorisation Issue
Seems like you should be using <deny users="?" /> instead
of <deny users="*" />, but keep in mind that permissions
checking against a group will require it to see if the
current user the access is running under is in a
particular group. This can be slow.
by a group ( which>-----Original Message-----
>Hi,
>
>I have an asp.net web site. I want 1 page to be accessedpages can be accessed by>I have set up on the web server). The remaining webis extremely slow for>anyone.
>
>In the web.config file I have used these settings:
><authorization>
>
><allow users="*" />
>
></authorization>
>
>
>
><location path="Support.aspx">
>
><system.web>
>
><authorization>
>
><allow roles="Server/MyGroup" /><deny users="*" />
>
></authorization>
>
></system.web>
>
></location>
>
>
>With these settings, access for the users in the groupdirectory is>that one page - whereas access to the other pages in thefile their access to>normal.
>
>If I remove the location section from the web.configpages. How can I>that web page reverts to the speed of the other web>resolve this?
>
>Cheers,
>
>Richard.
>
>
>
>.
>Keith Guest



Reply With Quote

