I have two different login pages for two different sub-sections of my site. I would like to declare two sets of defaultUrls and loginUrls for each login page/section. Is this possible? Does anybody have a code sample to do this?
I am securing both sections with similar code in the web.config files in each sections folder. Theoretically I would like to add to this config file where to go to login to this section.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
<allow roles="Administrator"/>
<deny users="*" />
</authorization>
</system.web>
</configuration>