SEARCH
TOOLBOX
LANGUAGES

On Print HTMLBody End

From Morfik Wiki

Jump to: navigation, search

This event is fired on the server after the content of the Body tag is written into the application’s main HTML page and just before the closing Body tag is inserted.

Where

Server

Sample code

FX Code

Procedure Project1XApp.XAppPrintHTMLBodyEnd(Response: THTTPResponse; Var Print: Boolean);
Begin
    Response.WritelnString('<div>This text is in the end of HTML Body of this document');
    Response.WritelnString('</div>');
End;
Applies to

Project

Related Topics

Events