Hello,
i'm trying to build an application on a new IIS6.0 server.
i've configured a new WebSite with his own ApplicationPool that is running under the Network Service account. I've then enabled the Web Service Extension for the ASP.NET v1.4322.
Then, i've created the following simple web.config file :
Code:
<configuration>
<system.web>
<customErrors mode="Off"/>
<identity impersonate="false" />
</system.web>
</configuration>
I then created a simple default.aspx page with only a table and NO ASP.NET code inside. But when I'm trying to view this page I get the following error :
Access to the path "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET Files\root\91c4480e\bf3a669d" is denied.
I've added the read permissions for the Network Service account to ALL
the folders in this path and also to the C:\ root. The "Temporary ASP.NET Files" folders has write permissions.
The error still remain the same. I've noticed the those folders had the Read-Only restriction inherited from elsewhere, so I've changed this too, but without success.
Does anyone knowns something about?
I'm not sure that my ISP will accept to change his permission to the C:\ root...
Thanks.
Davide