How to open another tab on click without refresh current page in ASP.NET Web Forms?
I want to be able to click on a button which opens another tab on click. In my case this is done using two ASP.Net controls, one asp literal with <form> tags to format it as a submit button, because I need it to have some POST functionality. The code inside the asp literal looks like the following: <input type='submit' id='openWindowButton' value = 'Open window'> with a given URL and _blank to open the new tab. I am using another asp control, a LinkButton this time, to run an event on click, and also to trigger the click on the submit asp literal with javascript code. It looks like this: <asp