I'm trying to delete all cache of a browser, however it doesn't get deleted. Here is the code where i set expire some cookies that i know. what about cache, any suggestions?
string[] cookies = Request.Cookies.AllKeys;
foreach (string cookie in cookies)
{
Response.Cookies[cookie].Expires = DateTime.Now.AddYears(-1);
}