vote up 1 vote down star

I have an application that has a backoffice. This backoffice was isolated with the use of roles like this:

<location path="backoffice">
    <system.web>
    	<authorization>
    		<allow roles="admin"/>
    		<deny users="*"/>
    	</authorization>
    </system.web>
</location>

But now we have another type of role that needs access. The companyadmin role.

Can I just say?:

 <location path="backoffice">
        <system.web>
        	<authorization>
        		<allow roles="admin,companyadmin"/>
        		<deny users="*"/>
        	</authorization>
        </system.web>
    </location>
flag

3 Answers

vote up 3 vote down check

Yes, exactly so (assuming you properly authenticated your users, and set their roles accordingly). Check the MSDN article: http://msdn.microsoft.com/en-us/library/8d82143t(VS.71).aspx

link|flag
vote up 1 vote down

Yes, roles, users and verbs takes comma separated values.

MSDN Reference

link|flag
vote up 0 vote down

yes, you can add n roles like that.

If you prefer, you can also:

<allow roles="admin"/>
<allow roles="admin1"/>
<deny users="*"/>
link|flag
what the hell is going on with that grammar? – Crossbrowser Mar 13 at 12:54

Your Answer

Get an OpenID
or

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