developerWorks  >  Lotus  >  Forums & community  >  Notes/Domino 4 and 5 Forum

Notes/Domino 4 and 5 Forum

developerWorks



RE: html code help
Rebecca M 08/14/2008 02:04 AM
Domino Designer -- Views All Releases Windows 2000


Hi Meg,

I think your problem is that you are using a relative URL instead of an absolute one. This means that Domino will tack on the URL of the current database at the start of the link. In order to use a different database, you have to specify it's details. So your code would look something like this:


link := "<b><a href = \"http://server.com/folders/dbname.nsf/7DayUE/" + @Text(@DocumentUniqueID) + "?OpenDocument\">" + EventDesc +
"</a></b>]";
"<TR><TD>" + " " + "</TD><TD colspan=2><i>" + "On " + @Text(wEventDate) + " an event is scheduled for: " + link + "</i></TD></TR>"

Go back