error message

  • Thread starter Thread starter DotNetJunkies User
  • Start date Start date
D

DotNetJunkies User

Just trying to run a test page and I am getting an error message. The error is "Server cannot access application directory 'X:\Inetpub\wwwroot\WebApplication1\'. The directory does not exist or is not accessible because of security settings". I have basic authentication set and I am authenticated in because I have an .asp page in the same directory and it is running fine. I am a local admin on the box. What am I missing.

Mike
 
authentication set and I am authenticated in because I have an .asp page in the same directory and it is running fine.
I am a local admin on the box. What am I missing.

The ASP.NET application runs as user ASPNET. So you must give user
ASPNET rights to access the directory
X:\Inetpub\wwwroot\WebApplication1\.
 
Back
Top