ASP submit button in new window
I have a form. It lets the user choose a car Make, Model, and Year.
When the submit button is clicked it returns the results.
Problem is I want the submit button to return the results in a new window, not the existing one.
I added target="_blank" to the form id as shown below
<form id="Form1" target="_blank" method="post" runat="server">
this opens a new window, but each time an item is selected. So when you choose a Make it opens a new window and then the same for the Model and year.
How can i get it to only open the new window when the submit button is pressed?
I tried adding the target="_blank" to the asp but it did nothing
<asp:Button id="btnSubmit" target="_blank" runat="server" Text="Find My Vehicle Request"></asp:Button>
Any help is appreciated. I tried it on my own for almost 2 hours