Hi,
What is difference between Response.Expires and Expires.Absolute ?
Thanks.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Oct 23, 2011, 1:47 AM
Prabhu RajaPosted Oct 23, 2011, 1:08 AM
Javeed M ShaikhPosted Oct 22, 2011, 9:15 PM
Response.Expires
This property specifies the number of minutes before a page cached in the browser expires ie. if the user returns to the same page before the specified number of minutes the cached version of the page is displayed.
example: <% Response.Expires = minutes %>
Response.ExpiresAbsolute
Using this property we can set the date and/or time at which page cached in the browser expires.
example: <% Response.ExpiresAbsolute=#October 21, 2011 14:00:00# %>
Please do not forget to mark "Accepted Answer".