Allows you to find out whether a page context exists on the server (which means whether the page was opened).
// Refreshes the page if the context exists otherwise opens the page
IF PAGE_Page3.Exist() = True THEN
PAGE_Page3.Refresh()
ELSE
PAGE_Page3.Display()
END
Syntax
<Result> = <Page>.Exist()
<Result>: Boolean
- True if the context of the specified page exists (which means if the specified page is opened),
- False otherwise.
<Page>: Page name
Name of page whose context existence must be checked.