Application.Navigate('page.html', ntBlank) bug ?

hi,
when use Application.Navigate with this code Application.Navigate ('page.html', ntBlank)
the new static page appears in a new page
and doesn't want to stay in the same browser window.
Thank you

I cannot see any unexpected, incorrect behavior.
The static page launches here in a new browser tab (which is what it should with param ntBlank)
See test project.
Project1.zip (5.5 KB)

Yes I know, but is it possible to have the same result inside the same tab as the main site ?

And don't open a new tab, the idea is to quit the application because securite or time out ....

If it needs to be opened in the same tab, use
Application.Navigate ('page.html', ntPage)

Thank you.