|
|
|
|
|
ContextExist (Function) In french: ContexteExiste 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 ContextExist(PAGE_Page3) = True THEN PageRefresh(PAGE_Page3) ELSE PageDisplay(PAGE_Page3) END
Syntax
<Result> = ContextExist(<Page>)
<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.
- Empty string ("") to specify the page to which the current process belongs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|