Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I hav an Image box which i need to update.. on client side..
my application is on server side and whn i updated thn image updated on a specific folder bt cant shw it on image box.. Bcz of storin temp files of images in google chrome.. So i delete or remov temp file of Internet..
Posted

1 solution

Hi,

Try disabling the caching of your page

Below are some code snippets have a look

XML
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));


<%@ OutputCache Duration="60" VaryByParam="None" %>




Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache); Response.Cache.SetNoStore(); 


have a look on the following msdn link for more details
http://msdn.microsoft.com/en-us/library/w9s3a17d(v=VS.100).aspx[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900