asp.Netページキャッシュ学習
4253 ワード
小さな練習、学習キャッシュ、ページにボタンを押して、現在の時間を印刷します.
ページに追加
バックグラウンドコード
キャッシュは今日ここまで学んで、时間があればまた学びましょう
ページに追加
<%@ OutputCache Duration="15" VaryByParam ="none" %> ,
Duration ,15 ,VarByParam="none", , , , 15 !
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm8.aspx.cs" Inherits="WebApplication1.WebForm8" %>
<%@ OutputCache Duration="15" VaryByParam ="none" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text=""></asp:Label>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
</div>
</form>
</body>
</html>
バックグラウンドコード
public partial class WebForm8 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
DateTime datetime = DateTime.Now;
Label1.Text = datetime.ToString();
}
}
キャッシュは今日ここまで学んで、时間があればまた学びましょう