AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones específicas de la Web / Funciones de páginas
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
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local