Does anyone know how to force a chart image generated by the ASP.Net Chart control not to be cached?

I have tried adding the following to the master page Page_Load method

        Response.AddHeader("Pragma", "no-cache");
        Response.CacheControl = "no-cache";
        Response.Cache.SetAllowResponseInBrowserHistory(false);
        Response.Cache.SetCacheability(HttpCacheability.NoCache);
        Response.Cache.SetNoStore();
        Response.Expires = -1; 

With no joy.

Any ideas?

Thanks

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted
<add key="ChartImageHandler" value="storage=file;timeout=20;url=~/ChartImages/;deleteAfterServicing=true;" />

This causes the file to be deleted after generation. The next time the page is loaded the chart control ought to generate a new chart, with a new id.

I guess the main question is: are you 100% certain the browser is actually caching the image?

link|improve this answer
Thanks for your reply, does that tag go in the chart control or the web.config? – user1058951 Feb 16 at 3:59
in webconfig :) – Ravi Feb 16 at 4:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.