Caching with the ObjectDataSource Control : ObjectDataSource cache « Cache « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » Cache » ObjectDataSource cache 
13.14.1.Caching with the ObjectDataSource Control
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    protected void srcProducts_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
    {
        lblMessage.Text = "Selecting data from component";
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Show ObjectDataSource Caching</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:Label
        id="lblMessage"
        EnableViewState="false"
        Runat="server" />
    <br /><br />

    <asp:GridView
        id="grdProducts"
        DataSourceID="srcProducts"
        Runat="server" />

    <asp:ObjectDataSource
        id="srcProducts"
        EnableCaching="true"
        CacheDuration="15"
        TypeName="Product"
        SelectMethod="GetProducts"
        OnSelecting="srcProducts_Selecting"
        Runat="server" />

    </div>
    </form>
</body>
</html>

File: Product.cs

using System;
using System.Data;
using System.Data.SqlClient;
using System.Web.Configuration;

public class Product
{

    public static DataTable GetProducts()
    {
        string conString = WebConfigurationManager.ConnectionStrings["Products"]. ConnectionString;
        SqlDataAdapter dad = new SqlDataAdapter("SELECT Title,Director FROM Products", conString);
        DataTable products = new DataTable();
        dad.Fill(products);
        return products;
    }
}
13.14.ObjectDataSource cache
13.14.1.Caching with the ObjectDataSource Control
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.