I’m working on an Asp.Net application. I needed to open some hyperlinks in new tabs, I’ve already done that, but my companie’s customers use firefox and have recently reported that firefox asks them for allowing pop up windows to open. Is there a code or way or something that I can enable firefox pop ups in my C# code? So that customers don’t see the firefox question anymore.
Share
If you want to open links in a new tab, you won’t use
window.open.Usually, the standard way of opening a link in a new window is using the
target="_blank"attribute of the HTML Anchor element: