Lotus Software logo
IBM Lotus Domino Designer 8.5
  Versions 8.5 and 8.5.1






Examples: @URLOpen

  1. This example displays the URL Open dialog box that allows a user to enter the URL.
  2. @URLOpen
  3. This example opens the www.acme.com Web page from the database if it is found there. If the page is not found in the database, it is retrieved from the Web, loaded into the database, and then opened.
  4. @URLOpen("http://www.acme.com/")
  5. This example retrieves the www.acme.com Web page from the Web, loads it into the database, and then opens it.
  6. @URLOpen("http://www.acme.com/"; 1)
  7. The following code, when added to an action on the "Purchasing" Web application form, opens the "CustomerInfo" Notes form, which resides in the same database:
  8. @URLOpen(@WebDbName + "/CustomerInfo?OpenForm")
  9. The following code, in a document viewed from the Web, will open the www.acme.com Web page in the same window (_self) as that document.
  10. @URLOpen("http://www.acme.com")
  11. The following code, in a document viewed from the Web, will open the www.acme.com Web page in a new window (_blank). Note that the window will not have any sFeatures assigned by previous javascript commands.
  12. @URLOpen("http://www.acme.com','_blank")
  13. The following code, in a document viewed from the Web, will open the www.acme.com Web page in a new window (_blank). All sFeatures will be inherited from the calling window.
  14. @URLOpen("http://www.acme.com','_blank','")
  15. The following code, in a document viewed from the Web, will open the www.acme.com Web page in a new window (NEW). The window will not inherit any sFeatures.
  16. @URLOpen("http://www.acme.com','NEW")
  17. In a document viewed from the Web, clicking on the following hyperlink will open a new window (mywindow) displaying the www.yahoo.com Web page.
  18. <a href="javascript: mywin = window.open('http://www.yahoo.com','mywindow');mywin.focus()">yahoo</a>

    The following code will open the www.acme.com Web page in the mywindow window. All sFeatures will be inherited from the mywindow calling window.

    @URLOpen("http://www.acme.com','mywindow','")
Related topics
@URLOpen




Library | Support | Terms of use |

Last updated: Monday, October 5, 2009