I am currently using an asp.net hyperlink control to direct users to a web URL when the hyperlink is clicked.
My goal is for the user to open a new tab, rather than a new window, when they click the hyperlink.
If the user clicks the link again, I want them to be redirected to the same tab that was opened previously.
An update: I have come across the following solution
Popup = window.open(URL, "LoginWindow");
This code will redirect users to the same window when the link is clicked. I have implemented this feature with success in popup windows. It works well in Chrome and Firefox, but encounters issues in IE.
Despite my efforts, IE always opens a new window instead of redirecting to the already-opened one. Does anyone have any suggestions on how to resolve this?
Thank you.