私は新しい ASP .NET です。データ エントリを保存して他のページにリダイレクトした後、すべてのデータ エントリをクリアする方法を教えてください。
HTMLページでこれを試しましたが、
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
また、これはコードビハインドページにあり、
protected void Page_Load(object sender, System.EventArgs e)
{
if(!Page.IsPostBack)
{
Response.Cache.SetCacheability(HttpCacheability.Server);
Response.Expires = -1;
Response.AddHeader("Pragma", "No-Cache");
Response.CacheControl = "no-cache";
}
}
それでも、エンコードしたデータ/ページは、戻るたびに表示されます。
助けてください。大変感謝しています。ありがとうございました。:D