`

13、使用页面输出缓存2

阅读更多
8、使用编程方式设置页面输出缓存过期
可以使用Response.RemoveOutputCacheItem()方法,以编程的方式从缓存中移除一个页面。

MovieList.aspx
<%@ Page Language="C#" %>

<%@ OutputCache Duration="3600" VaryByParam="none" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <%=DateTime.Now.ToString("T") %>
        <hr />
    </div>
    <asp:GridView ID="grdMovies" runat="server" AutoGenerateColumns="False" DataSourceID="dsMovies">
        <Columns>
            <asp:BoundField DataField="id" HeaderText="id" InsertVisible="False" ReadOnly="True"
                SortExpression="id" />
            <asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
            <asp:BoundField DataField="Director" HeaderText="Director" SortExpression="Director" />
            <asp:BoundField DataField="DateReleased" HeaderText="DateReleased" SortExpression="DateReleased" />
            <asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
        </Columns>
    </asp:GridView>
    <asp:SqlDataSource ID="dsMovies" runat="server" ConnectionString="<%$ ConnectionStrings:Movies %>"
        SelectCommand="SELECT * FROM [Movies]"></asp:SqlDataSource>
    <br />
    <br />
    <a href="AddMovie.aspx">Add Movie</a>
    </form>
</body>
</html>




AddMovie.aspx
<%@ 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 dvMovie_ItemInserted(object sender, DetailsViewInsertedEventArgs e)
    {
        HttpResponse.RemoveOutputCacheItem(Page.ResolveUrl("~/MovieList.aspx"));
        Response.Redirect("~/MovieList.aspx");
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <h1>
            Add Movie
        </h1>
        <asp:DetailsView ID="dvMovie" runat="server" AutoGenerateRows="False" DataSourceID="SqlDataSource1"
            Height="50px" AutoGenerateInsertButton="true" Width="125px" OnItemInserted="dvMovie_ItemInserted">
            <Fields>
                <asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
                <asp:BoundField DataField="Director" HeaderText="Director" SortExpression="Director" />
                <asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
            </Fields>
        </asp:DetailsView>
    </div>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:Movies %>"
        InsertCommand="INSERT INTO Movies(Title, Director, Description) VALUES (@title,@director,@description)"
        SelectCommand="SELECT Movies.* FROM Movies">
        <InsertParameters>
            <asp:Parameter Name="title" />
            <asp:Parameter Name="director" />
            <asp:Parameter Name="description" />
        </InsertParameters>
    </asp:SqlDataSource>
    </form>
</body>
</html>



2011-5-22 10:32 danny

MovieListKeyDependency.aspx
<%@ 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 Page_Load(object sender, EventArgs e)
    {
        Cache.Insert("Movies", DateTime.Now);
        Response.AddCacheItemDependency("Movies");
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <%=DateTime.Now.ToString("T") %>
        <hr />
        <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1">
            <Columns>
                <asp:BoundField DataField="id" HeaderText="id" InsertVisible="False" ReadOnly="True"
                    SortExpression="id" />
                <asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
                <asp:BoundField DataField="Director" HeaderText="Director" SortExpression="Director" />
                <asp:BoundField DataField="DateReleased" HeaderText="DateReleased" SortExpression="DateReleased" />
                <asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
            </Columns>
        </asp:GridView>
        <br />
        <br />
        <a href="AddMovieKeyDependency.aspx">Add Movie</a>
    </div>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:Movies %>"
        SelectCommand="SELECT * FROM [Movies]"></asp:SqlDataSource>
    </form>
</body>
</html>


AddMovieKeyDependency.aspx
<%@ 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 dvMovie_ItemInserted(object sender, DetailsViewInsertedEventArgs e)
    {
        Cache.Remove("Movies");
        Response.Redirect("~/MovieListKeyDependency.aspx");
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <h1>
            Add Movie
        </h1>
        <asp:DetailsView ID="dvMovie" runat="server" AutoGenerateRows="False" DataSourceID="SqlDataSource1"
            Height="50px" AutoGenerateInsertButton="true" Width="125px" OnItemInserted="dvMovie_ItemInserted">
            <Fields>
                <asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
                <asp:BoundField DataField="Director" HeaderText="Director" SortExpression="Director" />
                <asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
            </Fields>
        </asp:DetailsView>
    </div>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:Movies %>"
        InsertCommand="INSERT INTO Movies(Title, Director, Description) VALUES (@title,@director,@description)"
        SelectCommand="SELECT Movies.* FROM Movies">
        <InsertParameters>
            <asp:Parameter Name="title" />
            <asp:Parameter Name="director" />
            <asp:Parameter Name="description" />
        </InsertParameters>
    </asp:SqlDataSource>
    </form>
</body>
</html>


2011-5-22 10:53 danny

9、以编程方式操作页面输出缓存
HttpCachePolicy类
属性
VaryByHeaders
VaryByParams

HttpCachePolicy支持以下方法
AddValidationCallback
AppendCacheExtension
SetAllowResponseInBrowserHistory
SetCacheability
SetETag
SetETagFromFileDependencies
SetExpires
SetLastModified
SetLastModifiedFromFileDependencies
SetMaxAge
SetNoServerCaching
SetNoStore
SetNoTransform
SetOmitVaryStar
SetProxyMaxAge
SetRevalidation
SetValidUnitlExpires
SetVaryByCustom

ProgramOutputCache.aspx
<%@ 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 Page_Load(object sender, EventArgs e)
    {
        Response.Cache.SetCacheability(HttpCacheability.Public);
        Response.Cache.SetExpires(DateTime.Now.AddSeconds(15));
        Response.Cache.SetMaxAge(TimeSpan.FromSeconds(15));
        Response.Cache.SetValidUntilExpires(true);
        Response.Cache.SetLastModified(DateTime.Now);
        Response.Cache.SetOmitVaryStar(true);
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <%=DateTime.Now.ToString("T") %>
        <hr />
        <a href="ProgramOutputCache.aspx">Request this Page!</a>
    </div>
    </form>
</body>
</html>


2011-5-22 11:10 danny

10、创建页面输出缓存配置

web.config
<?xml version="1.0"?>
<!--
  有关如何配置 ASP.NET 应用程序的详细信息,请访问
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <connectionStrings>
    <add name="Movies" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\S4_2.mdf;Integrated Security=True;User Instance=True"
     providerName="System.Data.SqlClient" />
  </connectionStrings>
  <system.web>
    <caching>
      <outputCacheSettings>
        <outputCacheProfiles>
          <add name="CachelHour" duration="3600" varyByParam="none"/>
        </outputCacheProfiles>
      </outputCacheSettings>
    </caching>
    <compilation debug="true" targetFramework="4.0"/>
  </system.web>
</configuration>


OutputCacheProfile.aspx
<%@ Page Language="C#" %>

<%@ OutputCache CacheProfile="CachelHour" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <%=DateTime.Now.ToString("T") %>
    </div>
    </form>
</body>
</html>


2011-5-22 11:16 danny

分享到:
评论

相关推荐

    asp.net缓存(页面输出缓存和应用程序缓存)

    ASP.NET缓存技术是提升Web应用性能的关键策略之一,它主要分为页面输出缓存和应用程序缓存两大类。这两种缓存机制旨在减少服务器处理请求的时间,降低数据库负载,并且提高用户体验,通过存储已经生成的HTML页面或...

    页面缓存和清除页面缓存

    输出缓存会保存完整的HTML页面,而数据缓存则用于存储数据对象,如数据库查询结果。在C#中,我们通常通过`HttpCache`类(在`System.Web`命名空间下)来操作这两种缓存。 1. **输出缓存**:当一个页面首次被请求时,...

    ASP.NET2.0输出缓存

    页面输出缓存是ASP.NET 2.0中最基础的缓存机制。它将整个网页的内容保存在服务器内存中,当用户请求页面时,系统直接从内存中取出内容发送给用户,避免了再次执行完整的页面生命周期。这种缓存方式适用于那些内容不...

    ASP.net页面缓存技术

    输出缓存可以将页面的输出缓存在客户端浏览器、代理服务器或 Web 服务器上,以便快速地将页面呈现给用户。 OutputCache 指令是实现输出缓存的关键。它可以控制缓存的位置、生存期和缓存的版本。Duration 特性控制...

    设置页面缓存Cache

    通过将页面的HTML输出存储在服务器端的缓存中,当用户请求相同的页面时,服务器可以直接返回缓存中的内容,而无需重新执行页面的生成逻辑,从而大大减少了服务器资源的消耗和提高了用户体验。 #### 知识点二:ASP...

    ASP_NET中Web页面缓存技术探讨

    页面缓存是指将整个Web页面的输出结果存储在缓存中,以便后续的请求可以直接从缓存中读取,而无需重新生成页面内容。这种方法特别适用于那些生成过程中消耗大量资源但内容变化不频繁的页面。 **1.1 缓存一个页面** ...

    控制PHP的输出:缓存并压缩动态页面

    例如,在数据库查询前开启输出缓冲,在查询后关闭输出缓冲并发送缓存内容,可以在不影响页面显示的情况下,提升服务器处理其他任务的能力。 在处理动态页面时,还可以配合mod_gzip这类服务器模块来进一步提高性能。...

    五 petshop输出缓存设置.doc

    要启用输出缓存,可以在页面的声明性代码中使用`@OutputCache`指令。例如,以下代码表示将页面缓存60分钟,且不考虑GET或POST参数的差异: ```asp.net ``` `Duration`属性定义了缓存的持续时间,单位为秒;`...

    asp.net 页面输出缓存

    页面输出缓存是缓存的整个页面 使用很简单&lt;&#37;@ OutPutCache Duration=”60″ VaryByParam=”none”%&gt; Duration:缓存时间 VaryByParam:通过参数来更新缓存的内容 还有其他的一些属性 CacheProfile:调用...

    《零基础学ASP.NET 2.0》第17章 数据缓存

    17.2 使用页面输出缓存 299 17.2.1 启用页面输出缓存 299 17.2.2 按参数改变缓存内容 301 17.2.3 按头改变缓存内容 303 17.2.4 使用自定义字符串改变缓存内容 304 17.2.5 设置缓存位置 305 17.3 使用页面分段缓存 ...

    ASP.NET 2.0中的页面输出缓存

    页面输出缓存可以通过两种主要方式进行设置:使用@OutputCache指令和使用页面输出缓存API。@OutputCache指令是在页面或用户控件的头部声明的,提供了一种便捷的方式来定义缓存策略。指令包括多个属性,如: 1. ...

    php页面缓存方法小结

    在该函数中会判断当前请求的页面是否已经创建了缓存文件,如果缓存有效(即缓存时间未过期)则直接输出缓存内容,否则输出源文件内容。 page_cache()函数则用于实际的缓存操作,它把页面内容和一个自定义头部(包含...

    asp.net缓存 缓存

    输出缓存则主要针对HTTP响应,它可以缓存整个页面或页面的部分内容,这样当相同的请求再次到来时,就可以直接从缓存中返回,而无需重新生成页面。 何时使用缓存?以下是一些常见的情况: 1. 数据访问频繁但变化不...

    C# 系统缓存全解析

    在ASP.NET中,可以使用`&lt;%@ OutputCache&gt;`指令来开启页面输出缓存。例如: ```xml ``` 这里的`Duration`属性定义了缓存持续的时间(单位为秒),`VaryByParam`则可以指定哪些请求参数的变化会导致缓存失效。 3. 第...

    ASP.NET缓存剖析

    服务器端缓存则更为复杂,包括静态文件缓存、传统缓存、页面输出缓存、页面局部缓存和数据缓存等。静态文件缓存通常是指服务器对不变的HTML、CSS和JavaScript文件的缓存,减少服务器处理请求的压力。传统缓存涉及将...

    asp.net 提高网站速度及如何利用缓存

    在页面输出缓存中,开发者可以通过OutputCache指令来设置缓存的持续时间、缓存位置以及根据请求参数变化缓存内容等。 2. 用户控件级输出缓存(片段缓存) 片段缓存针对的是页面中特定的用户控件,而非整个页面。...

    深入挖掘ASP.NET 2.0系列课程(4):数据库的缓存管理与网站页面的缓存管理

    ASP.NET 2.0提供了多种页面缓存机制,包括整个页面缓存、部分页面缓存(也称为用户控件缓存)和输出缓存。整体页面缓存将整个HTML页面保存在缓存中,当请求到达时,直接从缓存返回页面,避免了重渲染整个页面的过程...

Global site tag (gtag.js) - Google Analytics