i have an Image Button Control:
<asp:ImageButton ID="ImageButton1" runat="server" class="btn btn-primary" ImageAlign="Middle" ImageUrl="~/img/search-butt.png" />
and the behind code of this control is:
Response.Redirect("http://www.google.com/search?q='" + TextBox1.Text + "'&sitesearch=http://example.com")
well, i need this (google page) open in a new tab not current tab. how can i do this ?