ASP.NET 에서 HTML 페이지 캐쉬 사용하지 않기
Response.Cache.SetExpires(DateTime.Now.AddSeconds(0)); Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetValidUntilExpires(true); Response.Cache.SetNoServerCaching(); 브라우져의 페이지가 자주 바뀌는 페이지는 브라우져 캐쉬를 무효화 해야할 경우가 생긴다. 이런 때에는 Page_Load 부분에 위와 같은 구문을 넣어보자..