我有一个定义了以下缓存的页面:
<%@ OutputCache Duration="60" VaryByParam="None" %>
解决方法
方案一
在页面上使用Substitution控件或API.这使您可以缓存页面上的所有内容,但替换控件中包含的部分除外.
http://msdn.microsoft.com/en-us/library/ms227429.aspx
使用它的一个好方法是将控件实现为一个简单的服务器控件,它将html呈现为字符串,但在页面上下文中(使用正确的客户端ID)这样做. Scott Guthrie有一个非常好的例子,说明这是如何工作的.顺便说一句,AJAX调用也能很好地工作……
摘自Scott Gu的文章……
[WebMethod] public string GetCustomersByCountry(string country) { CustomerCollection customers = DataContext.GetCustomersByCountry(country); if (customers.Count > 0) //RenderView returns the rendered HTML in the context of the callback return ViewManager.RenderView("customers.ascx",customers); else return ViewManager.RenderView("nocustomersfound.ascx"); }
方案二
通过页面加载上的AJAX调用渲染动态控件.这样,您可以安全地缓存整个页面(包括AJAX调用),并且只是调用的呈现结果在页面之间发生变化.