以下是我们在 cmd 行中通过 iisexpress 运行 MVC 4 站点的标准步骤。
- 通过 Visual Studio 注册站点
- 然后执行以下cmd“iisexpress /site:[SiteName]”
我们的情况是我们有同一个 MVC 4 站点的多个版本。如果我必须在不同版本之间切换。每次我打开 VS 并注册站点然后从 cmdline 运行它。应该有更简单的方法,即无需注册即可运行。
I found we can use the following cmd line
iisexpress /path:[Site folder] /port:[portnumber]
But accessing the site via browser I get HTTP 500 response.
Am I missing something.