WebResumeCache Function

Action

This function is used to restore the normal cache behavior, changed by a prior call to the WebSuspendCache function.

Include file

WebAPI.bdh

Syntax

WebResumeCache();

Return value

  • none

Example

dcltrans
  transaction TMain
  begin
    WebSuspendCache();
    WebPageUrl("http://lab3/shopit/","ShopIt - Greetings");
    WebResumeCache();
    WebPageUrl("http://lab3/","home page");
  end TMain;