我在使用以下代码在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);
答案 0 :(得分:1)
你不能 - 因为那是弹出窗口阻止程序所做的事情:它们会阻止弹出窗口(即调用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");
}
}
});
以下是fiddle