Search this site!

Return to the CSB Support home page
Pass-Thru Method

The Pass-Thru method allows you to type or place HTML or Javascript code directly on your web page, without using the 'Insert your own HTML'/'Insert Your Own Web gem'.

In order to tell CSB/Trellix that this is indeed HTML code to be executed when your page is published, you simply add: <| before your code and |> after your code!
Example 1:

The HTML command to insert a horizontal line on a web page is:  <hr>

To insert a horizontal line directly on your CSB/Trellix page,
type this:   < | <hr> | >

Note:  there should NOT be a space between < and |, or | and > -- I had to put a space in the example so that Trellix/CSB did NOT see it as a pass thru command.
Example 2:

Here's how to insert the Javascript code to display the date your page was last modified:

< | <SCRIPT LANGUAGE="Javascript"> <!--
document.write(document.lastModified);
// --> </SCRIPT> | >

Again, there should not be a space between the < and | symbols, and the | and > symbols.