Hello, im trying to authenticate with LDAP for the 1st time. I used this URL as my guide: http://msdn.microsoft.com/en-us/library/ff650308.aspx
Im using VS 2010, .NET 4.0
Here's my web.config:
<configuration>
<connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
<add name="ADConnectionString" connectionString="LDAP://192.168.168.10/CN=Users,DC=mydomain,DC=com"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<authentication mode="Forms">
<forms name=".ASPXAUTH" loginUrl="Login.aspx" d ...
Go to the complete details ...