SEARCH
TOOLBOX
LANGUAGES

On Print HTMLBody Start

From Morfik Wiki

Jump to: navigation, search

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

Where

Server

Sample code

FX Code

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

Project

Related Topics

Events