views:

90

answers:

2

I need to find whether the web page is cached or not. That s loaded newly or its appeared in cache.

A: 

You have either client-side or server-side caching and these are discrete in that they have no knowledge of each other.

On the server-side examine the Response.Cache object.

Dave Anderson
+1  A: 

Include generated timestamp somewhere in your response, and store the the timestamp somewhere in the server (maybe in the cache object). That way you know the version of the page by examining those values.

If you could elaborate more on the scenario you're facing, I'm sure you'll get better answer.

Salamander2007