#眉標=ASP.NET 4.0、Web Forms、VS2010 #副標=新一代ASP.NET 4.0開發技術與應用(1) #大標=更成熟穩健的Web Forms 4.0 #作者=文/圖 董大偉 ===<反灰>============= protected void Page_Load(object sender, EventArgs e) { Page.MetaKeywords = "ASP.NET 4"; Page.MetaDescription = "這是一個呈現ASP.NET 4最新技術的專業網站..."; } ================ ===<反灰>============= <%@ Page Language="C#" MetaKeywords="ASP.NET 4" |MetaDescription="這是一個呈現ASP.NET 4最新技術的專業網站..." AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="ASP.NET_Blank.WebForm1" %> ===================== ===<反灰>============= Disabled:
Enabled:
================ ===<反灰>============= public class MyOutputCacheProvider : System.Web.Caching.OutputCacheProvider { public override object Add(string key, object entry, DateTime utcExpiry) { throw new NotImplementedException(); } public override object Get(string key) { throw new NotImplementedException(); } public override void Remove(string key) { throw new NotImplementedException(); } public override void Set(string key, object entry, DateTime utcExpiry) { throw new NotImplementedException(); } } ================ ===<反灰>============= ================ ===<反灰>============= this.ListView1.ClientIDMode = System.Web.UI.ClientIDMode.Predictable; this.ListView1.ClientIDRowSuffix = "CustomerID".Split(','); ================ ===<反灰>============= (...略...) (...略...) ================ ===<反灰>============= ================