Add these lines of code in the "Global.asax.cs" file i.e.
protected void Application_BeginRequest()
{
Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache);
Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
Response.Cache.SetNoStore();
}