Method Html3():message() Professional

Create a HTML page with a notification.

Syntax
:message( <cTitle>, <cMessage> ) --> NIL
Parameters
<cTitle>
<cTitle> is the title of the HTML page.
<cMessage>
<cMessage> is the message of the notification.
Return

The return value of the method :message() is always NIL.

Description

This method is used to send an notification to the Web browser. The function calling the method must then return .T. (true) without calling any other methods of the HTML3 object. The HTML output of all previously called methods is discarded and only one complete HTML page displaying the message is sent to the Web browser.

HTML output:

<html> 
<head><title>[cTitle]</title></head> 
<body> 
<h2>[cMessage]</h2> 
</body> 
</html> 

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.