Domino Code Fragment

Code Name*
How to Return Background or Hyperlink Images via $$Return field in Domino
Date*
04/29/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.18.218.70.93
Description*
The following code retrieves the values from the fields named Fname (First Name) and Lname (Last Name) and returns it to the browser when a person submits the form. The code also uses the graphic image 3.jpg as the background image and the graphic image R.gif as a hyperlinked image to the Lotus web site.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
who:= @If(@Left(Fname; " ") = ""; Fname; @Left(Fname; " "));
whoo:= @If(@Left(Lname; " ") = ""; Lname; @Left(Lname; " "));
@Return("<BODY BACKGROUND=\"/3.jpg\"><center>
<A HREF=\"http://www.lotus.com/\"><img border=0 src=/R.gif alt=Lotus></A></center>
<h2>Thank you, " + who + " " + whoo + " for submitting.