在 ASP .NET 4.0 主机上托管 .NET MVC 3 网站
是否可以在托管服务上托管我的 .NET MVC 3 Razor 网站,该服务声明其托管 ASP .NET 4.0 网站,但未明确托管 .NET MVC 3?
如果是这样,我必须考虑哪些事情?例如,我需要在部署等中包含其他程序集吗?
Is it possible to host my .NET MVC 3 Razor website on a hosting service that states they host ASP .NET 4.0 sites but not explicitly .NET MVC 3?
If so what things must I consider? E.g. Are there additional Assemblies I will need to include in the deployment etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,
您只需要查明他们是否部署了 MVC 3 DLL。如果他们还没有或者您不想检查,您可以简单地将它们包含在您的项目中。然后,当您发布应用程序时,所有必需的 MVC DLL 将被复制到您的 bin 目录中。
这将创建一个 dll_deployable 文件夹,其中包含发布时要包含在项目中的所有 DLL。
Yes,
You simply need to find out if they have deployed the MVC 3 DLLs. If they haven't or you don't feel like checking you can simply include them in your project. Then when you publish your application all of the required MVC DLLs will be copied into your bin directory.
This creates a dll_deployable folder that contains all of the DLLs to be included in your project when you publish.