i am using an asp:button to open a url link :
protected void redirectTo_OnClick(object sender, EventArgs e)
{
Response.Redirect("http://www.google.com");
}
this link open itself in its own window , i want it to be opened in other window just link we do in html
< a href="google.com" target="_blank"></a>
how to do this in c# ?