I want to open a page in new tab of browser on button click.
I have searched a lot on google but i couldn\'t find anything.
Here is my button.
You can add to your button OnClientClick like so:
This will change the current form's target for all buttons to open in new tab. So to complete the fix you can then use 2 approaches:
function ResetTarget() {
window.document.forms[0].target = '';
}