Hi! I used this method open new tab when click button.
protected void Button11_Click(object sender, EventArgs e)
{
string Kodb = Kod.Text;
string url = "FPRINT.aspx?Kodbm=" + Kodb;
StringBuilder sb = new StringBuilder();
sb.Append("<script type = 'text/javascript'>");
sb.Append("window.open('");
sb.Append(url);
sb.Append("');");
sb.Append("</script>");
ClientScript.RegisterStartupScript(this.GetType(), "script", sb.ToString());
}
But I click button open new button and hide under mine browser. How I can show new tab on the left or right side into mine browser or open without hide on the mine browser?