當用戶點擊按鈕時,我想在不同的選項卡中打開一個.aspx/.html頁面,並在同一個選項卡中打開一個.aspx/.html頁面。是否可以添加2 Response.Redirect,一個將打開在不同的選項卡,另一個將打開在同一個選項卡中,使用C#?
示例代碼:
string redirect = "<script>window.open('../User/Profile.html');</script>";
Response.Write(redirect);
Response.Redirect("../User/NewUser.aspx",true);
感謝Adance!
潛在的重複數據刪除:http://stackoverflow.com/questions/16896284/opening-a-url-in-a-new-tab –
在這種解決方案,他們正在使用
window.location.href
那麼它在所有瀏覽器工作的OnClientClick和OnClick方法。我不能這樣做,因爲我必須先執行.net代碼,然後只重定向到兩個頁面。 – HP1104