Skip to content

Instantly share code, notes, and snippets.

@axrwkr
Created March 31, 2014 14:55
Show Gist options
  • Save axrwkr/9894198 to your computer and use it in GitHub Desktop.
Save axrwkr/9894198 to your computer and use it in GitHub Desktop.
Clear the asp.net cache
<script language="C#" runat="server">
protected void Page_Load(Object s, EventArgs e)
{
foreach (DictionaryEntry entry in HttpContext.Current.Cache){
HttpContext.Current.Cache.Remove(entry.Key.ToString());
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment