I am trying to create a new function for a web application that I have been creating in C #, what I need to do is that by clicking on a button
called guardar
, the action of saving the data is performed and apart from that opens a new tab in the browser with a report that is built, for now I have the function that when I click save it redirects me to the report
Response.Redirect("../Visor/ConstruirReporte.aspx?Reporte=CRE9&id=" + TextBoxRecibo.Text);
As I could do to tell you to open that report in a new tab
Greetings!