Opening a hyperlink in a new tab in ASP.NET
html, hyperlink
Solution
This depends on how the browser treats the `target` attribute on the `a` (anchor) tag
When `target="_blank"`, older browsers, which don't have tabbing, will open a new window.
Newer browsers, however, will use this to open a new tab.
Problem
I have a hyperlink on my page and I would like it to automatically open in a new tab when clicked, how would I do this? If this is not possible I will accept new window.