Random Web Page Images

Random Web Page Images

The following code will display 1 of 5 random images from the HTML directory on
the server.

Each time a browser loads your web page, a randomly selected image will be
displayed.

It is to be used in a "Text" field that is "Computed for display".
REM "The following code will display 1 of 5 random images from the HTML
directory on the server";
REM "and change the alternate text used for deferred loading each time the page
is loaded";

REM "List of GIF or JPG images to be randomized";
ImageList := "image1.gif~image2.gif~image3.gif~image4.gif~image5.gif";

REM "Matching list of alternate (deferred loading) text for images in the same
sequence as the images";
AltText := "This is the text for image 1~This is the text for image 2~This is
the text for image 3~This is the text for image 4~This is the text for image 5";

REM "Generate whole random number between 1 and 5";
Number := 1+(@Round(@Random*4));

REM "Select image from the list using the random number as selection variable";
Image := @Word(ImageList;"~";Number);

REM "Select alternate (deferred loading) text from the list using the random
number as selection variable";
ImageText := @Word(AltText;"~";Number);

REM "Prepare the web display string via concantenation";
Display := "[<img src=\"/"+Image+"\" Alt=\""+ImageText+"\">]";

REM "Exit the formula with the concantenated result";
Display

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.