ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Web-specific functions / Miscellaneous WEBDEV functions
  • Use conditions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Used to enable or disable the secure SSL mode.
Caution: use of this function assumes that an SSL certificate is active.. For more details, see Secure transactions and Obtaining an SSL certificate (IIS version 2 to 5).
Example
// -- code de clic navigateur du bouton
SSLActive(True)

// -- code de clic serveur du bouton 
PageDisplay(PAGE_Page1_Sécu)
// la page "PAGE_Page1_Sécu" est ouverte en mode sécurisé. 
// Toutes les actions faites à partir de cette page
// seront sécurisées
// -- code de clic navigateur du bouton
SSLActive(False)
// -- code de clic serveur du bouton 
PageDisplay(PAGE_Page1)
// la page "PAGE_Page1" est ouverte en mode normal. 
// Toutes les actions faites à partir de cette page
// seront en mode non sécurisé
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
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help