cache problem

Hai,

any one can help me

My problem is,

I updated my .jsp with a new Imagefile. Tomcat will still load the old page. I am very sure that i have updated the file with the new one.Currently to solve this problem, the only way i can do is to referesh that jsp page . Please advice me on what i should do and i have been trying a lot of ways but in vain.

How can i slove this problem.

Message was edited by:

allavudeen_screen

[466 byte] By [allavudeen_screena] at [2007-11-27 10:54:46]
# 1

<meta http-equiv="Pragma" content="no-cache">

<!-- Pragma content set to no-cache tells the browser not to cache the page

This may or may not work in IE -->

<meta http-equiv="expires" content="0">

<!-- Setting the page to expire at 0 means the page is immediately expired

Any vales less then one will set the page to expire some time in past and

not be cached. This may not work with Navigator -->

Good Luck

Ranjith

ranjith98a at 2007-7-29 11:52:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

This is the complete set:<meta http-equiv="cache-control" content="max-age=0, must-revalidate, no-cache, no-store, private">

<meta http-equiv="expires" content="-1">

<meta http-equiv="pragma" content="no-cache">

BalusCa at 2007-7-29 11:52:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...