Asp.net - 当窗口警报显示时,新窗口正在关闭

时间:2014-04-25 05:18:46

标签: c# javascript asp.net

您好我有一个在asp.net中开发的Web应用程序。我有2个Web表单WebForm1和WebForm2。在WebForm1中,我有一个将转到WebForm2的按钮。

这是我执行该步骤的代码。

Response.Write("<script type='text/javascript'>window.open('WebForm2.aspx','_blank');</script>");

在WebForm 2中,我有一个脚本,在Windows窗体中显示消息,如Messagebox

Response.Write("<script type=\"text/javascript\">alert('Msg.');" + "window.close();</script>");

现在,每当我关闭消息框时,我的WebForm2也会关闭。

有没有办法可以显示消息框。

1 个答案:

答案 0 :(得分:0)

试试这个..

Response.Write("<script type=\"text/javascript\">alert('Msg.');"</script>");