Hi,
We are working on a asp.net 2.0 website where we are using active directory membership provider for active directory authentication.
We have two providers in the providers section each using a different connection string for different domains.
<configuration>
<connectionStrings>
<add name="Domain1" connectionString="<<Path1>>"/>
<add name="Domain2" connectionString="<<Path2>>"/>
</connectionStrings>
<system.web>
<compilation debug="true" strict="false" explicit="true"/>
<membership defaultProvider ="Domain1_MembershipProvider">
<providers>
<add name="Domain1_MembershipProvider" type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionString ...
Go to the complete details ...