System.Web Namespace HttpResponse Class
Sets or retrieves the absolute date and time at which to remove cached information from the cache.
ExpiresAbsolute is provided for compatibility with previous versions of ASP.
[ VB ]
Public Property ExpiresAbsolute As DateTime
[ C# ]
public DateTime ExpiresAbsolute {get; set;}
[ C++ ]
public: __property DateTime get_ExpiresAbsolute ( );
public: __property void set_ExpiresAbsolute ( DateTime );
[ JScript ]
public function get ExpiresAbsolute ( ) : DateTime;
public function set ExpiresAbsolute ( DateTime );
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.
HttpResponse Members