通过编程为asp.net页面设置缓存 -尊龙游戏旗舰厅官网
尊龙游戏旗舰厅官网
收集整理的这篇文章主要介绍了
通过编程为asp.net页面设置缓存
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
asp.net引入的页面缓存机制,对于大型应用程序开发相当关键。我们可以通过页面声明的方式进行配置
<%@ outputcache duration="10" varybyparam="none" %>
还支持在运行时通过编程来设置
protected void page_load(object sender, eventargs e) {response.cache.setexpires(datetime.now.addseconds(10));//这是相对时间,即10秒之后过期response.cache.setcacheability(httpcacheability.public);response.cache.setvaliduntilexpires(true);//这句是必须的,否则没有办法实现缓存效果response.write(datetime.now.tostring()); }转载于:https://www.cnblogs.com/chenxizhang/archive/2008/09/03/1282719.html
总结
以上是尊龙游戏旗舰厅官网为你收集整理的通过编程为asp.net页面设置缓存的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: