Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Error:
Access to the path 'D:\WEBDATA\2much2win.com\CatchException_20140203' is denied.


Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.UnauthorizedAccessException: Access to the path 'D:\WEBDATA\2much2win.com\CatchException_20140203' is denied.

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true">, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.

Source Error:


Line 110: string fileName = string.Empty;
Line 111: fileName = string.Concat(filePath);
Line 112: System.IO.StreamWriter sw = new StreamWriter(fileName, true);
Line 113: sw.AutoFlush = true;
Line 114: sw.WriteLine(msg);

Source File: d:\webdata\2much2win.com\App_Code\DataClass.cs Line: 112



beacuase of this error i am not able to log in to my website and pls tell me what process do i have to follow in order to set appropriate permission so that any registered user can log in.
Posted
Comments
Sergey Alexandrovich Kryukov 3-Feb-14 2:45am    
Is this the path under the root directory configured for your site? If not, it could not be accessed.
—SA
ank170989 3-Feb-14 2:53am    
yes it is in root directory
Sergey Alexandrovich Kryukov 3-Feb-14 2:54am    
Then check up the file permissions...
—SA

1 solution

Refer [Solved] Access to the path is denied.[^] and follow the solutions.

Basically, this Exception comes if you are trying to operate on a resource not having required authorization.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900