WebUrlEndPage Function

Action

Marks the end of a page that is loaded by low-level web functions. It waits for all running threads (WebThreadWait) and stops the page timer.

This function is generated by the Recorder if the automatic page detection option is selected in the Recording tab of the Web category in the Profile Settings dialog.

Include file

WebAPI.bdh

Syntax

WebUrlEndPage(): boolean;

Return value

  • true if successful

  • false otherwise

Example

dcltrans
  transaction TMain
  begin
    WebUrlBeginPage("ShopIt");
    WebUrl("http://lab3/shopit/banner.gif");
    WebFormPost("http://lab3/shopit/product.asp", SHOPIT_PRODUCT_ASP002);
    WebUrl("http://lab3/shopit/pic.gif");
    WebUrlEndPage();
  end TMain;
dclform
SHOPIT_PRODUCT_ASP002:"code" := "2";