I’ve ASP.NET application with Windows Authentication.
How to get the username and password in ASP.NET from the form provided by Windows authentication method?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can read the currently logged on user’s username with:
But you can’t capture the password. Why would you need to anyways? Authentication occurs before your page is executed, and the password is never sent down the wire;
In your IIS application for Dynamics, you need to enable Windows Authentication, you do this through IIS manager. Click the Dynamics IIS website, then select Authentication, make sure you disable Anonymous Authentication, and enable Windows Authentication.