PAGE BUILDER'S TEMPLATE


To gain an idea of just what happens when entries are made in Page Builder's "fill-in" boxes, I used capital letters and wrote, in capitals, what "fill-in" box was being done. I then published the page and sourced it. The page source is given below and shows the Page Builder template with what I entered. My entries are shown in black and Page Builders template code in blue (disregard the other color coding for the moment).

<html>
<head>
<META NAME="generator" CONTENT="WebTV Page Builder v1.1">
<META NAME="description" CONTENT="">
<title>
TITLE (PAGE NAME) ENTRY  #######</title>
</head>
<body bgcolor="silver" text="black" link="blue" alink="red" vlink="#ff00ff">
<P>
<H2>
HEADING ENTRY</H2>
</P>
<P>
<TABLE>
<TR><TD>
<P ALIGN=left>

#######  TEXT ENTRY
</TD></TR></TABLE>
</P>

.
.
.
.
.
.
<a href="http://www.msntv.com">Powered by MSN TV</a>
.
.
.
.
.
.

</BODY>
</HTML>


A number of worthwhile observations can now be made:
Though the "Advanced Editor" tags are preventing, in the main, any HTML occurring between them from executing, left unaffected is any Javascript routines that may also be between these tags. To "comment-out" these routines as well simply requires the insertion of /* as the beginning Javascript comment tag and */ as the end Javascript comment tag. Lad as well as KDine recommend the use of these as the only general "Advanced Editor" tags :

<script><!--/* and */--></script>


The logic is this: If the well known MSNTV (WebTV) Javascript "bug" bites, the <script> tag is unabled which allows the HTML comment tag to operate, while when the Javascript is active it is the Javascript tags which operate.

The fault here is that only one or the other pertain, not both. To have both functional at the same time only a slight rearrangement has to be made:

</title></head><!--<script>/* and */</script>-->


Here the HTML comment tag operates whether Javascript is active or not, and when Javascript is active both HTML and Javascript codes are commented out.