In my web app, I have a login.aspx
page. When I enter the username and password, I need to validate it on a remote server. They only provide me the server name (path), and domain name (don't know the password and username). How can it be done?
My web.config
<authentication mode="Forms">
<forms loginUrl="Login.aspx" timeout="10"/>
</authentication>
I have read LDAP Authentication in ASP.Net MVC but, in the membership provider, they wrote in the connection, password and username.
What should i do?