Insert Web Images into Lotus Notes Forms

Insert Web Images into Lotus Notes Forms

I have images I want to access on a non-Domino web server. I don't want to add these same images to my resource library, but I want to include them in a Lotus Notes form. Here's how I did it ...


1) Add a 1x1 pixel image to the Resource Image Library.

2) In the Notes form, add this image where you want by doing an Create | Image Resource from the designer menu.

3) In the Picture Properties, give it a name in the HTML properties (say WebImage)

4) JSHeader
var frm;

5) In the ON LOAD event...
frm = window.document.forms[0];
window.document.images['WebImage'].src = "http://www.YourAddress.com/image.jpg";

NOTE: This works slick if you can determine your image from another field on the form and insert it into your HTTP address.

    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 March 2001

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.