Syntax
| TrmPrint text$
| ||||
---|---|---|---|---|---|
Description
| Places text$ in the web page buffer, at the current cursor location. the cursor location is set to the last printed character (with a previous TrmPrint statement).
NOTE each TrmPrint statement automatically inserts a CR/LF control character sequence when HTML interface is set. When you trace your HTML CCL procedure, the Web View will continuously show you the preview of your response page while you step through your program.
| ||||
See Also
| |||||
Example
| Sub Main
TrmSetInterface “html”
TrmPrint “<body>”
TrmPrint “hello world!"
TrmPrint "</body>"
End Sub
| ||||