I'm developing an ASP.NET app using Visual Studio Professional 2019. I use Microsoft Edge as my browser.
When I start my app without debugging (Ctrl + F5), everything works fine.
When I start my app with debugging (F5), I get this error message :
Hmmm… can't reach this page
It looks like the webpage at file:///C:/%5CProgramData%5CMicrosoft%5CVisualStudio%5CEdgeAdapter%5C94d888de/landingPage.html might be having issues, or it may have moved permanently to a new web address.
It is really weird, because %5C is the equivalent of a backslash. And when replacing all the %5C with "\", I can see that the page indeed exists.
Looking into IIS (version 10), I have fiddled around and tried being smart: I changed the value of "Enable 32-bit Applications" of my AppPool to "True", but this doesn't change anything.
As debugging in Visual Studio start IIS Express, I'm not sure modifying anything in IIS would have any effect...
Help, please !