Navigators in web

HiThere are five notes databases in my project. I have to make them web enabled. THere is one central database where it provided linking to other 5 databases in web.

I have a navigator in the central database, how can I program a hotspot to open the databases in web.

Please respond.

Subject: Navigators in web

You could use the following command:

_DBID:=“__”+[ReplicaID]+“.nsf?Open”;

_url := “http://”+ServerName+“/”+_DBID;

@urlopen(_url);

where [ReplicaID] is the DBs uniqueID without the “:”

Subject: Navigators in web

Hi,

What do you mean ?

“…how can I program a hotspot to open the databases in web.” ?

Thierry

Subject: Navigators in web

I have a navigator in the central database. I have to create four hotspots to open four databases.There is no option of “web” in script pane for hotspot when created on navigator. so where can I put the formula @urlopen?

Subject: RE: Navigators in web

Hi,

In program pane (right) click on “click” object of hotspot and at left instead “Simple action” choose “Formula” and you can put @UrlOpen(“…”)

HTH

Thierry