0
我使用ASP.NET,我想生成Meta標籤爲最後一次修改:產生元最後修改於ASP.NET
<head>
<meta http-equiv="last-modified" content="[email protected]:23:00 UTC" />
</head>
我使用此代碼的頁面:
protected void Page_Load(object sender, EventArgs e)
{
if (this.IsPostBack) return;
// .. and set last modified in the date format specified in the HTTP rfc.
// <meta http-equiv="last-modified" content="[email protected]:23:00 UTC" />
var value = DateTime.Now.ToUniversalTime().ToString("R");
Response.AddHeader("Last-Modified", value);
Response.AppendHeader("Last-Modified", value);
Response.Cache.SetLastModified(DateTime.Now);
}
但沒有在頭產生。
有什麼建議嗎?