如何在没有通知用户的情况下在后端使用C#清除所有浏览器的历史记录(IE,Chrome,Mozilla)? 我在页面加载方法中包含以下代码:
Response.AppendHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
Response.AppendHeader("Pragma", "no-cache"); // HTTP 1.0.
Response.AppendHeader("Expires", "0"); // Proxies.
以下是我在标题内容上方包含的代码:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
尽管所有这些都没有删除浏览器历史记录。还可以做其他事情来实现同样的目标吗?