How do you publish an ASP.net MVC application from Visual Studio 2013 to your local network?

前端 未结 5 1509
耶瑟儿~
耶瑟儿~ 2021-01-28 00:19

I made a simple ASP.net MVC web application in Visual Studio 2013, and I want to deploy it so it can be accessed from the browser on other computers on my local network. I have

5条回答
  •  执笔经年
    2021-01-28 00:28

    You need to enable IIS on the host as IIS Express is not built with that in mind. Its for debugging purposes.

    You've also not mentioned your binding configurations or your app pool settings.

    Here is a comprehensive tutorial on how to publish your application using IIS IIS Video tutorial

    You will need to ensure the binding that you specify is available across the network and that the connecting clients have permissions.

提交回复
热议问题