On my page in IE8, I have got some text which gets changed through an admin panel. For example: if the page contains the text \'hello world\', after 5 minutes the text could
The best way to disable cache is to use a variable with random unique value in your URLs.
For example if your page's URL is:
www.abc.com/hello.php
make it like:
www.abc.com/hello.php?randomVar=1SH232X-182N19-1929SK
You can use the current timestamp as the value of randomVar. This way, the page will not be cached.