我需要在新窗口中打開鏈接按鈕中的鏈接。我有下面的代碼,但它會引發JavaScript錯誤。請幫助在新窗口中打開鏈接
ASPX代碼:背後
protected void Link_Click(object sender, EventArgs e)
{
ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW",
"window.open(" + Link.Text + " ,'new_tab');", true);
}
和錯誤是...? – tnw 2015-01-09 18:19:28
在''+ Link.Text +「'周圍放置單引號,並使用onClientClick =」「而不是onClick – Tyr 2015-01-09 18:20:13