///
/// Empty the browser client's cache ///
Public static void clearclientPagecache ()
{
HttpContext.current.Response.buffer = true;
HttpContext.current.Response.expires = 0;
HttpContext.current.response.expiresabsolute = datetime.now.adddays (-1);
HttpContext.current.response.addheader ("prgma", "no-cache");
HttpContext.current.response.addheader ("Cache-Control", "Private");
HttpContext.current.response.cachecontrol = "no-cache";
}