http://www.codeproject.com/aspnet/cachingaspnet/caching.zip
the majority [if not all] of the pages in a dynamic website are dynamic. that is, pages that are created on user request. as we all know, dynamic web pages help to provide dynamic content, customized for the user requesting the page [e.g.: the user´s home page]. dynamic pages also help provide dynamic content fetched from a changing data store without the need for the administrator to change the page content every time something changes in the data store [e.g.: listing of books in a publisher´s website]. the disadvantage is the overhead in creating the pages for every user request. 【程序编程相关:Eclipse插件开发系列5.SWT中的】
introduction 【推荐阅读:关于Repeater控件的使用】
to overcome this, some websites have page creation engines which create all pages in one go and save them as html pages which are then served to the users. but this will only help in scenarios where the page content is the same for all requests [user-independent] as in the second example above. the listing of books is the same irrespective of the user requesting the page. even if there is provision for listing books category wise by providing different category id values through the querystring, the page output for a particular category of books is the same for all users.
... 下一页