HttpResponse.ExpiresAbsolute Property
.NET Framework 3.0
Gets or sets the absolute date and time at which to remove cached information from the cache. ExpiresAbsolute is provided for compatibility with previous versions of ASP.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Property ExpiresAbsolute As DateTime 'Usage Dim instance As HttpResponse Dim value As DateTime value = instance.ExpiresAbsolute instance.ExpiresAbsolute = value
/** @property */ public DateTime get_ExpiresAbsolute () /** @property */ public void set_ExpiresAbsolute (DateTime value)
public function get ExpiresAbsolute () : DateTime public function set ExpiresAbsolute (value : DateTime)
Not applicable.
Property Value
The date and time at which the page expires.The ExpiresAbsolute, Expires and CacheControl properties have been deprecated in favor of the methods of the HttpCachePolicy class available through the Cache intrinsic object to control the IIS output cache and client caches.
Community Additions
ADD
Show: