仅使用 DLL 在 IIS6 上运行 MVC2

发布于 2024-10-08 00:10:51 字数 122 浏览 0 评论 0原文

我关注过有关在 IIS6 上运行 MVC2 应用程序的文章,但所有这些文章都涉及在服务器上安装 MVC2。

是否有关于直接安装 Framework 3.5、设置 IIS6 以及仅复制所需 dll 的已知文章/步骤?

I have followed articles on running MVC2 apps on IIS6, but all of those deal with MVC2 being installed on the server.

Are there are known articles/steps on having a straight install of Framework 3.5, setting up IIS6, and just copying required dll's across?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

秋心╮凉 2024-10-15 00:10:51

我认为唯一的区别是,它们不是从 GAC 运行这些程序集,而是驻留在您的 /bin 目录中。尝试将 MVC 程序集 (Mvc/Routing/Abstractions) 设置为将其 CopyLocal 属性设置为 true,然后尝试部署到未安装 MVC 的 IIS6 计算机。 CopyLocal 将强制将这些程序集引用复制到您的输出目录。

唯一可能导致问题的是您是否在中等信任度下运行,因为我不确定是否有任何较低级别的 WebForms 页面编译机制需要提升信任度(如果是的话,它们将被授予更高的信任度)他们是 GAC 的)。

The only difference I would imagine is that instead of running those assemblies from the GAC, they instead reside in your /bin directory. Try setting the MVC assemblies (Mvc/Routing/Abstractions) to have their CopyLocal property set to true, and then try deploying to an IIS6 machine that doesn't have MVC installed. The CopyLocal will force those assembly references to be copyed to your output directory.

The only thing which may cause an issue is if you are running in Medium trust, as I'm not sure if any of the lower level WebForms page compilation mechanism require elevated trust (which they would be granted if they were GAC'd).

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