AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones específicas de la Web / Funciones varias de WEBDEV
  • Use conditions
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
Used to enable or disable the secure SSL mode.
Caution: an active SSL certificate is required to use this function. For more details, see Secure transactions and Obtaining an SSL certificate (IIS version 2 to 5).
Example
// -- browser click code of button
SSLActive(True)
 
// -- server click code of button
PageDisplay(PAGE_Secure_Page1)
// "PAGE_Secure_Page1" is opened in secure mode.
// All the actions performed from this page
// will be secured
// -- browser click code of button
SSLActive(False)
// -- server click code of button
PageDisplay(PAGE_Page1)
// "PAGE_Page1" is opened in standard mode.
// All the actions performed from this page
// will not be secured
Syntax
SSLActive(<Mode>)
<Mode>: Boolean
  • True if the SSL must be enabled,
  • False otherwise.
Remarks

Use conditions

This function can only be used:
  • in the click code of the buttons that perform a "Send the value of controls to the server (submit)" operation ("General" tab in the description window of the control).
  • in the selection code of a "Send the value of controls to the server (submit)" menu option ("General" tab in the description window of the menu option).
Component: WDJS.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