I know that the HTML anchor tag has an attribute called target, which will open a new page in a new window/tab if we set target='_blank'
. It should work well with static HTML pages.
However, when we submitting a form by clicking the submit button on an ASP page, I find that the result page normally will be loaded into the same tab/window.
So my question is: are we able to load page into a new tab/window when user clicks submit button?
Thanks.
EDIT:
Looks like <form target='blank'>
is the answer although its said to be deprecated according to w3schools website. :)