SEARCH
TOOLBOX
LANGUAGES

On Print HTML

From Morfik Wiki

Jump to: navigation, search

This event is fired on the server just before the start of the process of writing application’s main HTML page.

Where

Server

Sample code

FX Code

Procedure Project1XApp.XAppPrintHTML(Response: THTTPResponse; Var Print: Boolean);
Begin
    Response.WritelnString('<div>This text is shown before of HTML generating of this page');
    Response.WritelnString('</div>');
End;
Applies to

Project

Related Topics

Events