up vote 2 down vote favorite
1
share [g+] share [fb]

I have an ASP.NET page which changes passwords in the OU. Where do I set the user which actually runs my code?

In the virtual directory security settings, the application pool user? or the Webconfig? Which one of the configurations actually configures the user which runs the asp.net code?

Thanks.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You should look into ASP.NET Impersonation. It can be done adding this section to your web.config file:

<identity impersonate="true" userName="accountname" password="password" />

This allows you to control the identity under which code is executed.

Important note: It's advisable to understand the implications of this change in terms of security.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.