ASP on Windows 2003
we tried giving ASPNET account access to 'C:\WINDOWS\TEMP' but no luck there. Any ideas on this ?
Thanks!
we tried giving ASPNET account access to 'C:\WINDOWS\TEMP' but no luck there. Any ideas on this ?
Thanks!
Hi Joie22,
the process modell changed with IIS6 on Win2003 so you will see your code is executed by a process called w3wp.exe. By default is is executed as "Network service".
Have a look in IIS Manager: you will see "Application Pools". This is the place where you create "applications" which can be given an identity (windows account) to run in. Create a new one if "Network Service" is no good default for you and attach you web site or web app with that new app pool. Scan the property pages of the site or app and you will find the "Application pool" combo box to select your pool.
Another question: why is C:\windows\temp used? That might not be a good place for storing/reading data when implementing a web app. Maybe you should move to a place not in such a security critical directory like the OS directory ![]()
HTH,
SvenC