Programming Reference Manual
 
Syntax
 
HtmRewind
 
Description
The statement resets the output buffer for the current html document being generated. All previous TrmPrint instructions are undone.
 
Parameter
Description
drive$
Optional, drive to be examined. 
See Also
Example
 
Sub Main
    Dim Repl$
    TrmSetInterface “HTML”
    TrmPrint “Content-type: text/html”
    TrmPrint “<BODY>test</BODY>”
    HtmRewind
    TrmPrint “Content-type: text/html”
    TrmPrint “<BODY>new test</BODY>”
End Sub