On Print HTML
From Morfik Wiki
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;
| BX Code |
|---|
Published Message Sub XAppPrintHTML(Response As THttpResponse, ByRef Print As Boolean) Response.WritelnString("<div>This text is shown before of HTML generating of this page") Response.WritelnString("</div>") End Sub |
| CX Code |
|---|
published message void XAppPrintHTML(THttpResponse Response, ref Boolean Print) { Response.WritelnString("<div>This text is shown before of HTML generating of this page"); Response.WritelnString("</div>"); } |
- Applies to
Project

