Haim Bender
Haim Bender

Reputation: 8207

ASP.NET 3.5 Permissions on IIS 6

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, is it the application pool user? Or is it in Web.config? Which one of the configurations actually configures the user that runs the asp.net code?

Upvotes: 0

Views: 421

Answers (2)

AxelEckenberger
AxelEckenberger

Reputation: 16936

As far as I know the Identitiy with which a ASP.NET application is run is set in the properties for the web application.

Upvotes: 0

Richard
Richard

Reputation: 109170

The identity of the user under which a web application runs is defined by the application pool which the web application uses. All of this can be seen and set in Internet Information Server (IIS) Manager.

Upvotes: 2

Related Questions