> Dear All,
>
[quoted text clipped - 7 lines]
> version of pages is being displayed by our server not the changes
> one. How the cached files may be deleted from the server?
Cached pages usually don't live on the server, but on the client or
downstream proxies. You can use pure server-side caching in ASP.NET,
but this is not likely to be your problem.
> our is
> there any other reasons we may have note been noticed for this
> problem? Should we add any caching related codes into each pages?
Yes, you should mark your pages as non-cacheable. This is usually the
best initial approach for dynamically created web pages:
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Cheers,

Signature
http://www.joergjooss.de
mailto:news-reply@joergjooss.de