Inet_Msg function
Description
Converts a message from Msg() to HTML format.
Syntax
return = Inet_Msg(Request, MsgRec, MsgId, argv)
Parameters
The Inet_Msg function has the following parameters:
Parameters | Description |
---|---|
Request | [in]HTTP-request |
MsgRec | [in]Message definition structure (can be null if MsgKey set) |
MsgId | [in]Name of the message to execute (can be null if MsgRec is set) |
Argv | [in]@fm delimited list of substitutable parameters |
Returns
A message in HTML format.
Example
In BASIC+, to output the message "No Information to Display" in an Inet_ procedure, code the following:
VarHtml = Inet_Msg(Request, 'Error <br> No Information to display')