如何以编程方式检测我的应用程序是否在 ASP.NET 页面中以 IIS 7.0 集成模式运行

发布于 2024-09-16 08:05:42 字数 132 浏览 2 评论 0原文

一般来说,我们应该控制我们的 AppPools 并能够强制使用托管管道模式。就我而言,我没有控制权,并且希望根据托管管道模式(集成与经典)稍微不同地实现代码背后的代码。我只是不知道如何检测到这一点。有没有一种简单的方法可以从代码隐藏页面中执行此操作?

Generally we should have control of our AppPools and be able to force the Managed Pipeline Mode. In my case I don't have control and would like to implement the code behind code a little differently based on the Managed Pipeline Mode (Integrated vs Classic). I just don't know how to detect this. Is there a simple way to do it from within the code behind page?

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

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

发布评论

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

评论(2

日裸衫吸 2024-09-23 08:05:42

我在 .NET 4.0 中找到了一种无需引用 Microsoft.Web.Administration 程序集即可执行此操作的方法。 System.Web.HttpRuntime 类具有 UsingIntegratedPipeline 布尔属性。

I found a way in .NET 4.0 to do this without referencing the Microsoft.Web.Administration assembly. The System.Web.HttpRuntime class has the UsingIntegratedPipeline boolean property.

温柔戏命师 2024-09-23 08:05:42

查看 ApplicationPool.ManagedPipelineModeServerManager.ApplicationPools 属性。因此,您可以检查当前 AppPool 的 ApplicationPool.ManagedPipelineMode ,例如 这个示例可以执行此操作,但是是针对应用程序的 ApplicationPool 执行此操作,而不是像示例那样针对默认应用程序域执行此操作。 ServerManager.ApplicationPools 包含所有池,包括您的池。

Look at ApplicationPool.ManagedPipelineMode and ServerManager.ApplicationPools Properties. So you can examine ApplicationPool.ManagedPipelineMode of the current AppPool about like this example do, but to do this for ApplicationPool of your application and not for the default application domain like the example do. The ServerManager.ApplicationPools contain all pools including yours one.

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