Response.Cache.SetExpires(DateTime.Now.AddSeconds(0));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetValidUntilExpires(true);
Response.Cache.SetNoServerCaching();
브라우져의 페이지가 자주 바뀌는 페이지는 브라우져 캐쉬를 무효화 해야할 경우가 생긴다.
이런 때에는 Page_Load 부분에 위와 같은 구문을 넣어보자..
'Development > .NET' 카테고리의 다른 글
| TCP, 네트워크정보 보는 프로그램 (0) | 2007.05.21 |
|---|---|
| HTTP Debugging Proxy - Fiddler (0) | 2007.05.21 |
| 팀장의 고백 (0) | 2007.05.17 |
| 간단하게 만들었던 업로드 하는 컨트롤 (0) | 2007.05.16 |
| ASP.NET 2.0 AJAX Extensions 1.0 (0) | 2007.05.01 |