ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Web-specific functions / Miscellaneous WEBDEV functions
  • 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
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help