I can't solve this problem
I suggest I have to change c:\Windows\System32\drivers\etc\hosts
file and add after
# localhost name resolution is handled within DNS itself.
the next line:
127.0.0.1 mysite.dev
but it doesn't help. Any suggestions?
Error ocсurrs when I try to open web site project in Microsoft Visual Studio 2012.
I don't know why, by my
applicationhost.config
file was completely missing from myC:\Users\Administrator\Documents\IISExpress\config\
folder.Copy/pasting
C:\inetpub\history\applicationhost.config
into that folder seemed to fix the problem for me.Got the idea from here.
I was facing the same issue because of my network password changed.I changed my NetExtendor login password but I have to login in my laptop with old password.
Try these steps to fix this issue:
log into the Computer with whatever password works log into vpn with whatever password works ctl-alt-del to lock the pc then use the new password to unlock it
It worked for me :-)
Thanks!
I know this is probably a rare occurrence, but figured I'd put it here:
My
csproj
file was set to "read only" (Don't ask me how I managed that), but after I turned off "read only" access, everything was fine. (VS2017)More often than not, at least in my case, this happens is when a
*.csproj.user
file is in the project directory and has<UseIISExpress>true</UseIISExpress>
in it.You can opt to install IIS locally and edit a couple of tags on .csproj File. Open you csproj file and go to section
<VisualStudio>
then find tag<UseIIS>True</UseIIS>
it must be set as true, then go to tag:<IISUrl>
and set up with the URL address where the application will be hosted for testing:And that is. Now you can load your project normally.
I was having same issue. I just deleted a folder named .vs in the project directory and it worked for me.