Table of Content
HAL Forum
procedure WebOutArea (
area Data)
Description:
Sends the contents of the specified area to web user.
Parameters:
Data The area which will have it's contents sent to the web user.
global
procedure WebMain()
begin
    area a;
    
    AddTextToArea("<b>Hello World!</b>",a);
    WebOutArea(a);

  return;
end;

Related topics:
««