點擊它時會出現一個按鈕,它會發出將用戶重定向到google.com的Javascript。因爲我不想這個重定向在歷史中生成一個項目,我使用window.location.replace但它生成歷史項目。window.location.replace在ASP.Net代碼中使用時生成歷史記錄
protected void btn1_Click(object sender, EventArgs e)
{
string url = "window.location.replace('http://google.com');";
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Redirect", url, true);
}
任何一個有任何想法如何對付它。
如果連產生的歷史有什麼不對? – Ved 2012-02-23 13:25:05
這是使用location.replace代替location.href – kazim 2012-02-23 13:27:23