2013-09-16 89 views
1

我想在不同窗口中的新選項卡中打開URL。也不能以彈出的方式打開。如何在新窗口中打開網址?

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

這將需要發生客戶端,而不是服務器端。服務器不知道或無法控制客戶端顯示內容的窗口。 – David

回答

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); 
相關問題