有关 Asp.Net 管道和内部请求处理架构的文章/链接
我正在寻找有关 ASP.NET 架构内部工作的详细信息。主题需要包括以下内容:
- Asp.Net 线程/应用程序池
- HttpRuntime
- HttpApplication - 何时以及如何发生 设置
- HttpContext 是如何设置的
- 对象如何沿着 管道使用 HttpContext.Current.Items
- 为什么修改static ASP.NET 中的变量需要锁 (高级)
- IIS 7 集成模式
I am looking details on the internal working of asp.net architecture. The topics need to include the following:
- Asp.Net Thread/Application Pools
- HttpRuntime
- HttpApplication - When and how it is
set up - How HttpContext is set up
- How objects can passed along the
pipeline using
HttpContext.Current.Items - Why does modification of static
variables requires locks in ASP.NET
(advanced) - IIS 7 Integration Mode
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
本文来自 msdn 杂志(使用 HTTP 管道安全地实现请求处理、过滤和内容重定向in ASP.NET)描述了您列出的许多主题。
This article from msdn magazine (Securely Implement Request Processing, Filtering, and Content Redirection with HTTP Pipelines in ASP.NET) describes many of the topics you listed.
我觉得Matthew分享的文章很好。这是另一篇文章,提供了相当多的见解 - http://www.code-magazine .com/Article.aspx?quickid=0511061
I think article shared by Matthew is a good one. Here's another one that offers quite a bit insight - http://www.code-magazine.com/Article.aspx?quickid=0511061
对于 IIS7 集成管道和一般 IIS,IIS7 Resource Kit 是相当重要的参考资料。它由 IIS 团队编写,包括 Mike Volodarsky(项目经理)和 Carlos Aguilar Mares(开发主管)。
作为一名开发人员,我的办公桌上一直放着这本书。
IIS.NET 网站也是一个非常好的资源。
With regards to IIS7 Integrated Pipeline and IIS in general, the IIS7 Resource Kit is fairly essential reference material. It's written by the IIS team and includes contributions from Mike Volodarsky (Programme Manager) and Carlos Aguilar Mares (Development Lead).
As a developer I have this book by my desk all the time.
The IIS.NET website is a pretty good resource too.