在 ASP .NET 4.0 主机上托管 .NET MVC 3 网站

发布于 2024-11-30 06:31:49 字数 130 浏览 2 评论 0原文

是否可以在托管服务上托管我的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风启觞 2024-12-07 06:31:49

是的,

您只需要查明他们是否部署了 MVC 3 DLL。如果他们还没有或者您不想检查,您可以简单地将它们包含在您的项目中。然后,当您发布应用程序时,所有必需的 MVC DLL 将被复制到您的 bin 目录中。

  • 在 VS 中右键单击您的 MVC 项目
  • 选择“包括可部署依赖项”
  • 选择 MVC 3 Razor 选项

这将创建一个 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.

  • Right-Click your MVC project in VS
  • Select "Include Deployable Dependencies"
  • Select the MVC 3 Razor Option

This creates a dll_deployable folder that contains all of the DLLs to be included in your project when you publish.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文