window.open with target “_blank” in Chrome
问题 I have a small javascript function which opens an url in a new tab: function RedirectToPage(status) { var url = 'ObjectEditor.aspx?Status=' + status; window.open(url , '_blank'); } This always works when called client-side by clicking a button, even in chrome. But in Chrome it won't work when it's called from server-side(!) by using ScriptManager.RegisterClientScriptBlock() In Firefox and IE it opens the url in a new tab, but chrome opens the url in a new window. What could be a workaround to