Application Pool 与 AppDomain 区别
摘要:I saw a lot of people asking what's the differences between Application Pool and AppDomain in ASP.NET.First of all, Application Pool is a concept in IIS, but AppDomain is a concept in .NET. You can wr...
阅读全文
应用程序池,WebApplication,和线程池之间有什么关系
摘要:一个应用程序池是一个独立的进程,拥有一个线程池,应用程序池中可以有多个WebApplication,每个运行在一个单独的AppDomain中,这些WebApplication公用一个线程池不同的AppDomain保证了每个WebApplication的静态变量不会互相干扰,不同的应用程序池保证了一个网站瘫痪,其他不同进程中的站点还能正常运行下图说明了他们的关系节选自: http://www.uml...
阅读全文
进程、应用程序域、程序集、对象上下文(转载)
摘要:看到了这么一篇文章,觉得讲的还可以,所以就直接转载过来,原文: http://www.360doc.com/content/10/0608/00/495229_31864349.shtml简单的说,进程可以承载一组相关的.NET程序集,而应用程序域(简称AppDomain)是对该进程的逻辑细分。一个应用程序域进一步被细分成多个上下文边界,这些边界用来分组目的相似的.NET对象。使用上下文的概念,C...
阅读全文
解决Silverlight无法调试的问题
摘要:原文: http://wenku.baidu.com/view/a8dffd23482fb4daa58d4b80.htmldownload
阅读全文
Asp.net Validator Control在Client Side的实现
摘要:研究了一下Asp.net Validator Control在Client Side的实现
阅读全文
Firefox下的滚动条问题
摘要:hello!i searched for an answer to my question already, but could not find anything i could use to solve my problem. Drupal Version: 5.3Used Theme: Minelli (core Theme, Garland-like with fixed width)...
阅读全文
Asp.net关于动态输出服务器控件的应用
摘要:本文讨论的重点是:如何动态写入服务器端控件,并且在页面PostBack到Server端时,在Server端来获取被动态写入的服务器端控件的各种属性。
阅读全文