|
|
|
|
|
SSLActive (Function) In french: SSLActive Used to enable or disable the secure SSL mode. // -- 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 <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).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|