Atozed Forums
Open URL in a newTabl window - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Open URL in a newTabl window (/thread-2860.html)



Open URL in a newTabl window - staff@ergosoft.it - 09-05-2022

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


RE: Open URL in a newTabl window - Rolphy Reyes - 09-05-2022

(09-05-2022, 02:32 PM)staff@ergosoft.it Wrote: 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

Hi!

Try this WebApplication.NewWindow


RE: Open URL in a newTabl window - staff@ergosoft.it - 09-05-2022

Rolphy Reyes

Hi,

WebApplication.NewWindow open a popup window.... 

I need new tab on browser... 
many browsers have pop-ups blocked

thanks


RE: Open URL in a newTabl window - Alexandre Machado - 09-07-2022

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.


RE: Open URL in a newTabl window - staff@ergosoft.it - 09-07-2022

Hi,

ok 
thanks
Alessandro Romano