Don't cache page and u can't delete any entries of history through javascript |
| Danish Shaikh replied to Jobi K John at 11-May-08 02:54 |
use following statements to forcefully expire pages.
Response.Cache.SetCacheability(HttpCacheability.Private)
Response.Cache.SetNoStore()
Response.AppendHeader("Pragma", "no-cache")
|
|