CodeCharge StudioSpecify whether the URL should be converted to an absolute URL or a secure (https://) URL.
| Setting | Description |
|---|---|
| None (default) |
The URL is not converted. |
| Absolute | The URL is converted into the absolute URL based on 'Server URL' set in the Project Settings. |
| SSL | The URL is converted into the SSL based on 'Server URL' set in the Project Settings. |
For example, the page has a name name = 'my_page.asp', and 'Server URL' is set as 'www.domain.com/my_project/'.
| Setting | Result after conversion |
|---|---|
| None | <a href='my_page.asp'> |
| Absolute | <a href='http://www.domain.com/my_project/my_page.asp'> |
| SSL | <a href='https://www.domain.com/my_project/my_page.asp'> |