I open my page in a new tab through the following code :
String js = "window.open('" + page + "'" + ", '_blank');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Open", js, true);
but in Google chrome
it opens in a new window rather than in a new tab !
How to make it open in a new tab or even maximized ?