I want to open a new tab or a new page by using Response.Redirect in a button click handler. I\'m using a query string to pass some values. How can I open he pa
Response.Redirect
You can use ScriptManager to do the needed:
private void Redirect_New_Tab(string url_To_Open) { string modified_URL = "window.open('" + url_To_Open + "', '_blank');"; ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW", modified_URL , true); }