A)location.replace('newurl')
B)<body onbeforeunload="window.location.replace('')">
C) Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache)
D) <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
E)
Response.Buffer=true;
Response.ExpiresAbsolute=DateTime.Now.AddSeconds(-1);
Response.Expires=0;
Response.CacheControl="no-cache";