I'm trying to open new html page in new tab using of c# inside of asp.net. I have
protected void btnShowMatrix_Click(object sender, EventArgs e)
{
string url = @"http://localhost/IMApp/static/knit.html";
Response.Redirect(url);
}
This works fine but I need to open that html page in new tab. Is there any simple way, how to do that. Many thank in advance.