1

我想在新选项卡中打开URL,而不是在同一个窗口中。也不会作为弹出窗口打开。

if (objKVP.Key == "page" && objKVP.Value == "True")
   {
        Response.Redirect("https://x.v.com/login.aspx");
   }
4

1 回答 1

0

希望对你有帮助

ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW", "var Mleft = (screen.width/2)-(760/2);var Mtop = (screen.height/2)-(700/2);window.open( 'your_page.aspx', null, 'height=700,width=760,status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,top=\'+Mtop+\', left=\'+Mleft+\'' );", true);
于 2013-09-16T13:52:53.360 回答