Consultor Eletrônico



Kbase P5812: WebSpeed errors 293 & 193 occur when ~ and {&OUT} is not spe
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   29/12/2003
Status: Verified

FACT(s) (Environment):

WebSpeed 2.x

FACT(s) (Environment):

WebSpeed 3.x

SYMPTOM(s):

** "<file-name>" was not found. (293)

** <program> Could not understand line <number>. (193)

The following lines in a CGI wrapper program (Process-web-request) causes errors.

<style>
.border {border: thin solid #669999; padding: 5px;}
</style>

CAUSE:

Need to include ~ (tilde) before the each curly braces otherwise the compiler thinks the content inside the curly braces as an include file. Also, there is no {&OUT} command.

FIX:

Add the {&OUT} and tilde to correct the problem. The correct way of specifying the style in this case is:

<style>
{&OUT} .border ~{border: thin solid #669999; padding: 5px; ~}.
</style>