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 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.
Component: wd290page.dll
Minimum version required
  • Version 24
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help