|
I think you are running into a client side page cache issue. I have been there before as well.
You can use:
Response.CacheControl = "no-cache"
This will tell the browser not to cache that page. This will force it to relaod the page and get the most current information.
__________________
~Ryan
|