Posts: 42
Threads: 15
Joined: Oct 2018
Reputation:
0
Location: Italy
Hi,
very simple question... I need to open a page in external url in new tab on browser...
how can I do?
this NOT work:
Webapplication.GoToURL(sUrl, False);
WebApplication.Redirect(sUrl, False);
thanks
Alessandro Romano
Posts: 42
Threads: 15
Joined: Oct 2018
Reputation:
0
Location: Italy
Rolphy Reyes
Hi,
WebApplication.NewWindow open a popup window....
I need new tab on browser...
many browsers have pop-ups blocked
thanks
Posts: 2,257
Threads: 195
Joined: Mar 2018
Reputation:
86
Location: Auckland, New Zealand
WebApplication.NewWindow can open a popup or a new tab, depending on browser configurations. Most browsers default to a new browser tab.
this
WebApplication.NewWindow('https://google.com');
opens google in a new tab in all browsers I have here, including Edge, Chrome and Firefox, as long as popups are enabled. Popup blockers can't be avoided. If you could, everybody else out there would be able to do it and popup blockers would server no purpose.
Posts: 42
Threads: 15
Joined: Oct 2018
Reputation:
0
Location: Italy
Hi,
ok
thanks
Alessandro Romano