hi guys i published my application on server when i enter my domin i got this error
403 - Forbidden: Access is denied. You do not have permission to view this directory or page using the credentials that you supplied.
what's happend?
hi guys i published my application on server when i enter my domin i got this error
403 - Forbidden: Access is denied. You do not have permission to view this directory or page using the credentials that you supplied.
what's happend?
Are you hosting the site on iis? if so make sure the account your website runs under has access to local file system?
Straight from msdn .....
The Network Service account has Read and Execute permissions on the IIS server root folder by default. The IIS server root folder is named Wwwroot. This means that an ASP.NET application deployed inside the root folder already has Read and Execute permissions to its application folders. However, if your ASP.NET application needs to use files or folders in other locations, you must specifically enable access.
To provide access to an ASP.NET application running as Network Service, you must grant access to the Network Service account.
To grant read, write, and modify permissions to a specific file
Click here for more