我如何使用OutputCache只为一个Gridview
本文关键字:一个 Gridview 何使用 OutputCache | 更新日期: 2023-09-27 18:08:55
我的页面上有几个Gridviews。当页面打开时必须运行数据源,所以我不能对整个页面使用OutputCache。
但是1 Gridview不重要,查询也很慢。所以我需要缓存这个。1小时/1次查询对我来说很好。
我的连接:
try
{
OleDbConnection Connection1;
using (Connection1 = new OleDbConnection("Provider=MSDAORA.1;Data Source=DATABASE:1521/orcl;Persist Security Info=True;Password=PASSWORD;User ID=USERNAME;"))
{
string sqlQuery = "select * from TABLE";
using (OleDbDataAdapter cmd = new OleDbDataAdapter(sqlQuery, Connection1))
{
Connection1.Open();
DataTable dt = new DataTable();
cmd.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
Connection1.Close();
}
}
}
catch (Exception)
{
}
如何缓存1个连接?
我可以使用OutputCache只为1 Gridview?
我需要从连接端缓存吗?
使用用户控件缓存部分页面
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyUserControl.ascx.cs" Inherits="StackOverflowQuestions.UserControl.MyUserControl" %>
<<%@ OutputCache Duration="3600" VaryByParam="none" %>
<asp:GridView ID="gvCache" runat="server"></asp:GridView>
把你的代码放在code behind .cs文件page_load
protected void Page_Load(object sender, EventArgs e)
{
//your code here
}
在您的页面中像这样使用用户控件
注册用户控件
<%@ Register TagName="UserControl" TagPrefix="uc" Src="~/UserControl/MyUserControl.ascx" %>
并像这样使用
<div>
<uc:UserControl runat="server" />
</div>