摘要: 1. Disable the Debug Mode or Set Debug ="false" How it affect performance: By default this attribute is "true" when you create new application and is useful when you are developing the application. De... 阅读全文
posted @ 2006-08-08 17:35 Koven 阅读(256) 评论(0) 推荐(0)
摘要: Best practices for .Net Performance 1) Avoid the use of ArrayList. Because any objects added into the Arraylist are added as System.Object and when retrieving values back from the arraylist, these obj... 阅读全文
posted @ 2006-08-08 17:23 Koven 阅读(208) 评论(0) 推荐(0)
摘要: HTTP运行期 HTTP运行期处理客户端应用程序(例如Web浏览器)进入的一个Web请求,通过处理它的应用程序的适当组件路由请求,然后产生响应并发回提出请求的客户端应用程序。 进入的HTTP Web请求最先由IIS Web服务器接收到,它在此请求基于ASP.NET已注册处理的扩展名传送到ASP.NET ISAPI上。 HTTP运行期首先创建一个HttpContext对象的实例,它包含了当前正在处理... 阅读全文
posted @ 2006-08-08 13:49 Koven 阅读(181) 评论(0) 推荐(0)