我正在使用android webview爲我的asp.net web應用程序和下面的代碼假設更改國家選擇哪些工作正常與web瀏覽器,但它不工作與android webview作爲內部webview時我點擊這個按鈕將其移到我的Index.aspx,但該國仍是它被選爲他沒有采取Cookie的新值之前HTML餅乾不能與android webview
protected void chgcontrybtn_Click(object sender, EventArgs e)
{
if (Request.Cookies["countryCookies"] != null)
{
Response.Cookies["countryCookies"].Expires = DateTime.Now.AddDays(-1);//to remove cookies
Response.Redirect("Index.aspx");
}
else if (Request.Cookies["Location"] != null)
{
Response.Cookies["Location"].Expires = DateTime.Now.AddDays(-1);
Response.Redirect("Index.aspx");
}
}
僅有代碼的答案几乎與僅鏈接答案一樣無用。請解釋問題所在,以及您提出的解決方案爲何解決這個問題。 – IInspectable