You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
746 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%@ Page Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="PageByControl.aspx.cs"
Inherits="Cahce_PageByControl" Title="页面输出缓存VaryByControl" %>
<%@ Register Src="CacheControl.ascx" TagName="CacheControl" TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<p>
未经缓存设置的容器页:
<%=DateTime.Now %>
</p>
<p>
经过VaryByControl设置的用户控件根据DropDownList的不同缓存不同的内容用户控件中的@OutputCache指令为Duration="10"
VaryByControl="DropDownList1"<br />
<uc1:CacheControl ID="CacheControl1" runat="server" />
</p>
</asp:Content>