forbid cache page in asp.net

added two lines in page_load:
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetAllowResponseInBrowserHistory(false);
原文地址:https://www.cnblogs.com/margiex/p/217856.html