Nertim
Nertim

Reputation: 380

Run the ASP .NET web application under a different user than the current user

IIS is utilizing the current logged-user's credentials to access an ASP.NET application. Is it possible to create a login page on the application and pass another users credentials, so that particular web app is run under a different user?

Upvotes: 1

Views: 3340

Answers (1)

Keith Adler
Keith Adler

Reputation: 21178

Disable impersonation, should you have enabled it (most likely not) and set the Authentication in IIS to Anonymous with the Account you wish to run under:

http://support.microsoft.com/kb/324274

Upvotes: 2

Related Questions