防止asp弹出窗口从弹出窗口拦截器
本文关键字:窗口 防止 asp | 更新日期: 2023-09-27 18:19:18
我使用以下代码在asp .net发送数据库中的文本之前获得弹出窗口。但由于弹出窗口拦截器,弹出窗口没有出现
string strPopup = "<script language='javascript' ID='script1'>"
// Passing intId to popup window.
+ "window.open('sharepopup.aspx?data=" + HttpUtility.UrlEncode(intId.ToString())
+ "','new window', 'top=90, left=200, width=500, height=500, dependant=no, location=0, alwaysRaised=no, menubar=no, resizeable=no, scrollbars=n, toolbar=no, status=no, center=yes')"
+ "</script>";
ScriptManager.RegisterStartupScript((Page)HttpContext.Current.Handler, typeof(Page), "Script1", strPopup, false);
cmd = new SqlCommand("Insert Into ChatTB values(column names) ", con);
你不能-因为这就是弹出窗口拦截器所做的:它们阻止弹出窗口(即调用window.open
或调用target="_blank"
链接),除非它直接响应用户的鼠标操作。
也可以使用Jquery
$("#dialog-message").dialog({
modal: true,
draggable: false,
resizable: false,
position: ['center', 'top'],
show: 'blind',
hide: 'blind',
width: 400,
dialogClass: 'ui-dialog-osx',
buttons: {
"ok": function() {
$(this).dialog("close");
}
}
});
小提琴来了