Consultor Eletrônico



Kbase P62785: Unable to use "less than" and "greater than" signs as literal in Webspeed
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   7/29/2004
Status: Unverified

SYMPTOM(s):

Unable to use "less than" and "greater than" signs as literal in Webspeed

Using a program containing

{&OUT} "<" "your-name" ">".

Works fine using Scripting Lab

CAUSE:

The "<" and ">" sings are reserved characters for HTML code representing start-tag and end-tag.

FIX:

Use html-encode function

Sample code:

{&OUT} html-encode('&lt;') 'your-name' html-encode('&gt;').

the output will be:

<your-name>