How to install ASP.NET MVC 5 on a server?

前端 未结 4 818
故里飘歌
故里飘歌 2021-02-12 19:31

I just updated my website from MVC 4 to MVC 5.

Now when I want to run it on my web server instead of my development machine it does not work.

It think it is beca

4条回答
  •  爱一瞬间的悲伤
    2021-02-12 19:50

    When you deploy your app just make sure that all the assemblies are being deployed to your production environment in the bin folder. ASP.NET MVC is an xCopy deployment, so you don't have to install anything.

    You might want to check that your Production environment has ASP.NET 4.0 and 4.5 registered.

提交回复
热议问题