网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

在asp.net 中实现维护数据缓存

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/13
  在项目中我们经常会用到数据缓存,也会在项目处理对缓存的维护,但是有些时间我们需要人为的来维护这些缓存,用下面的代码来实现:
 
  1、将缓存信息绑定到DataGrid上
 
private void bindCache(){string str = this.TextBox1.Text.Trim();DataTable table = new DataTable();table.Columns.Add("CacheName", typeof(string));table.Columns.Add("CacheType", typeof(string));IDictionaryEnumerator enumerator = HttpRuntime.Cache.GetEnumerator();int num = 0;while (enumerator.MoveNext()){bool flag = true;if ((str != "") && (enumerator.Key.ToString().IndexOf(str) < 0)){flag = false;}if (flag){num++;DataRow row = table.NewRow();row["CacheName"] = enumerator.Key;row["CacheType"] = enumerator.Value.GetType();table.Rows.Add(row);}}this.Label1.Text = num.ToString().Trim();this.DataGrid1.DataSource = table;this.DataGrid1.DataBind();}
 
  2、清除指定的缓存
  private void DataGrid1_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e){string text = e.Item.Cells[0].Text;if (base.Cache[text] != null){base.Cache.Remove(text);this.bindCache();}}
  
  • 下一篇资讯: asp.net 生成图片验证码
  • 网学推荐

    免费论文

    原创论文

    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号