SEARCH
TOOLBOX
LANGUAGES

On Print HTMLHeader

From Morfik Wiki

Jump to: navigation, search

This event is fired on the server when the HTML Header section is being written into the application’s main HTML page.

Where

Server

Sample code

FX Code

Procedure Project1XApp.XAppPrintHTMLHeader(Response: THTTPResponse; Var Print: Boolean);
Begin
    Response.WritelnString('<script type="text/javascript"');
    Response.WritelnString('src="http://mysite.com/somescript.js">');
    Response.WritelnString('</script>');
End;
Applies to

Project

Related Topics

Events