asp.net 4.0 和 asp.net 4.0 集成管道有啥区别?
Posted
技术标签:
【中文标题】asp.net 4.0 和 asp.net 4.0 集成管道有啥区别?【英文标题】:Whats the difference between asp.net 4.0 and asp.net 4.0 integrated pipeline?asp.net 4.0 和 asp.net 4.0 集成管道有什么区别? 【发布时间】:2013-05-22 07:32:26 【问题描述】:在网络主机/网站设置面板中环顾四周时,我遇到了这个
我什么时候会选择管道选项而不是非管道选项?
【问题讨论】:
What is the difference between 'classic' and 'integrated' pipeline mode in IIS7? 的可能重复项 【参考方案1】:主要不同的是,集成模式实际上使 IIS 和 asp.net 成为一体,每个请求都从“事件的有序列表”传递。
在经典模式(未集成)中,IIS 首先处理调用,然后将其发送到 asp.net 进行“第二次”处理。
集成更快更轻,因为您在 IIS 中调用更少,步骤更少。
另请注意,在集成模式下,请求在应用程序启动时不可用,在 global.asax
您可以阅读更多详情:http://www.iis.net/learn/get-started/introduction-to-iis/introduction-to-iis-architecture
【讨论】:
***.com/questions/716049/… 完全没有问题。感谢您的提醒以上是关于asp.net 4.0 和 asp.net 4.0 集成管道有啥区别?的主要内容,如果未能解决你的问题,请参考以下文章
如何以编程方式在 ASP.NET 4.0 GridView 上启用分页和排序?
Wordpress 类似于 ASP.NET MVC2/3 或 ASP.NET 4.0 中的动态永久链接
如何使用 .Net 4.0 中包含的 HttpClient 类将文件上传到在 IIS Express 中运行的 Asp.Net MVC 4.0 操作