我在asp.net web应用程序的aspx页面中有一个下面的内联Javascript代码。
function Confirm_Popup(dealid) {
var bVal
bVal = confirm("Are you sure you want to assign the same deal again?");
if (!bVal)
window.location.href = "page.aspx?id=" + id;
else
window.location.href = "page1.aspx?id=" + id;
}
我从代码隐藏文件调用代码,如下所示。
ScriptManager.RegisterStartupScript(Me.Page, Me.GetType(), "showalert", "Confirm_Popup('" & Id & "');", True)
第1步:首次打开页面链接。
步骤2:在新标签页中再次打开相同的链接。
问题是我正在确认在步骤1中弹出,但步骤2没有弹出。 要求是在步骤1和2中显示弹出窗口。好像代码是由浏览器缓存的。
请帮助。