HttpContext.Current.Response.Buffer = False
 HttpContext.Current.Response.Expires = 0
 HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1)
  HttpContext.Current.Response.AddHeader("pragma", "no-cache")
   HttpContext.Current.Response.AddHeader("cache-control", "private")
 HttpContext.Current.Response.CacheControl = "no-cache"
以上6条语句的作用是什么?
尤其是最后一条说详细的,好吗?