ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Web-specific functions / Page functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Allows you to find out whether a page context exists on the server (which means whether the page was opened).
Example
// 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.
Component: wd290page.dll
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help