为什么,在下面的 aspx 和后面的代码中,当以编程方式启用输出缓存(在代码后面启用)时,它不起作用并且有问题?
aspx:
<%@ Page Language="C#" AutoEventWireup="true" Inherits="ProgrammaticOutputCaching"
CodeBehind="ProgrammaticOutputCaching.aspx.cs" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblDate" runat="server" Font-Bold="False" Font-Names="Verdana" Font-Size="XX-Large"></asp:Label><br />
<br />
<asp:Button ID="Button1" runat="server" Text="Refresh" />
</div>
</form>
</body>
</html>
后面的代码:
protected void Page_Load(object sender, EventArgs e)
{
Response.Cache.SetCacheability(HttpCacheability.Public);
// Use the cached copy of this page for the next 60 seconds.
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));
//Response.Cache.VaryByParams.IgnoreParams = true;
// This additional line ensures that the browser can't
// invalidate the page when the user clicks the Refresh button
// (which some rogue browsers attempt to do).
Response.Cache.SetValidUntilExpires(true);
lblDate.Text = "The time is now:<br>" + DateTime.Now.ToString();
}
使用用于输出缓存的页面指令没有问题:
意思是
aspx:
<%@ Page Language="C#" AutoEventWireup="true" Inherits="OutputCaching" CodeBehind="OutputCaching.aspx.cs" %>
<%@ OutputCache Duration="60" VaryByParam="Name;Age" Location="Server" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblDate" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="XX-Large"></asp:Label>
<br />
<br />
<asp:Button ID="Button1" runat="server" Text="Refresh" />
</div>
</form>
</body>
</html>
和
后面的代码:
protected void Page_Load(object sender, EventArgs e)
{
lblDate.Text = "The time is now:<br>";
lblDate.Text += DateTime.Now.ToString();
}
那么以编程方式有什么问题?