vs2015 self-brought iisexpress default only localhost, so you can not debug across the LAN win10/win7 vs2015 iisexpress support LAN access find the configuration file under the project directory, E:\projects\ Visual Studio2015\xxprojectname\.vs\config opens the ApplicationHost.config file with Notepad and finds:
<bindings>
<binding protocol= "http" bindinginformation= "*:58975:localhost"/>
</bindings>Add a line below the binding, such as:
<bindings>
<binding protocol= "http" bindinginformation= "*:58975: localhost"/> (cannot be deleted)
<binding protocol= "http" bindinginformation= "*:58975: 192.168.0.172"/><!--Join this line -
</bindings>After the addition of the Save, and then restart Iisexpress, follow the above steps, under the Win7 operating system has been able to access the normal, but the test win10 did not respond, you need to run the following statement: Open the Run window, enter Cmd,enter, and then execute the command below.
(open as Administrator)
netsh http add urlacl url=http://192.168.0.172: 58975/user=everyoneClick Debug to see localhost and
192.168.0.172 have opened the service.
WIN10 Visual Studio IIS Express LAN debug, default only localhost