Reputation: 1308
In Windows XP, when we installed ASP.NET, we got a default user called ASPNET. I used to give permissions to this user in the database, since ASP.NET applications ran under this user context.
What is the corresponding account in Windows 7? Does it get automatically created when .NET is installed?
Upvotes: 0
Views: 1348
Reputation: 4163
Since IIS 6, w3wp.exe hosts ASP.NET applications and this worker process by default uses Network Service account instead. create a normal user account and grant specific rights to do these things.Or from the application you can impersonate a user to give specific rights.
Upvotes: 1