How to Tell Domino to Not Automatically Add the "BoilerPlate" HTML Tags

Mindwatering Incorporated

Author: Tripp W Black

Created: 03/27/2019 at 03:01 PM

 

Category:
Notes Developer Tips
Agents

Issue:
For an agent, you have designed your own HTML tags. However, Domino is automatically adding the stock <HTML><HEAD><BODY> tags.
We want to suppress that.

Solution:
Start with the DocType line first. Then add your regular code.

Print |Content-type:text/html|
Print |<!doctype html>| ' doesn't work by itself, you need the line above, as well.
Print |<html><head>|
Print |<title>Client Services Report - Mindwatering</title><meta name="title" content="Mindwatering Incorporated - Client Services Report">|
Print |<link rel="stylesheet" media="screen" title="MW" type="text/css" href="/MW.nsf/webHH/mw.css">|
Print |<meta name="Language" content="en">|
Print |<meta name="description" content="Mindwatering Incorporated - Client Services Report">|
Print |<meta name="publisher" content="Mindwatering Incorporated">|
Print |<meta name="keywords" content="Mindwatering Client Services">|
Print |<meta name="rights" content="Copyright 2003, 2005, 2008 Mindwatering Incorporated">|
Print |<meta name="robots" content="noindex, nofollow">|
Print |<meta http-equiv="expires" content="0">|




previous page