时时更新的技巧

1.     public static object Substitute(this HtmlHelper html, MvcCacheCallback cb)
        {
            html.ViewContext.HttpContext.Response.WriteSubstitution(c => cb(new HttpContextWrapper(c)));
            return null;
        }

在mvc中可以写出缓存。用在webform也可以。但方法有所变,可以参考微软的msdn(关键字WriteSubstitution)

你可能感兴趣的:(技巧)