PartialCachingAttribute.VaryByCustom Property
.NET Framework 3.0
Gets a list of custom strings that the output cache will use to vary the user control.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates how the PartialCachingAttribute(Int32,String,String,String) constructor can be applied to a user control. In the example, the constructor is used to indicate that the user control can be cached and to specify that the cache entry is dependent on the browser type and major version number.
// Set the PartialCachingAttribute.Duration property to // 20 seconds and the PartialCachingAttribute.VaryByCustom // property to browser. /** @attribute PartialCaching(20, null, null, "browser") */ public class ctlSelect extends UserControl
Community Additions
ADD
Show: