WebPageSuppress function

Action

Specifies a file that must not be loaded by future Web function calls.

Include file

WebAPI.bdh

Syntax

WebPageSuppress(in sUrl: string): boolean;

Return value

  • true if the file is successfully added to the suppress list

  • false otherwise

Parameter Description
sUrl Absolute URL to the file on the server.

Example

dcltrans
transaction TMain
begin
WebPageSuppress("http://mycompany.com/t?s=all");
WebPageUrl("http://mycompany.com/");
WebPageLoadAll();
WebPageUrl("http://mycompany.com/");
end TMain;