Running an ASP.net project with an Application Pool with a specific Identity yields "(403) Forbidden"

Viewed 2103

I'm getting this error message when trying to start an ASP.net project from Visual Studio (it doesn't run):

Unable to start debugging on the web server. The remote server returned an error: (403) Forbidden.

enter image description here

Help takes me to this page which is unhelpful. Searching for the more general error yields me this page which is also unhelpful. I'm using IIS 10 with an Application Pool of my creation with a different Identity than mine.

3 Answers

In my case, I have changed Solution Configuration from Release to Debug mode.

Release Mode

To

Debug Mode

This solution may work for someone.

Related