( |
|
|
|||
Converts the specified string for web usage, by replacing “unsafe” characters with ‘%’ followed by their hex equivalent. |
Parameters: | |
Text that will be encoded by the standards of URL encoding. | |
global procedure OnApplicationStartup() begin // This will appear into hansa.log >> %22Hello%20World%20%26%20Goodbye%21%21%21%22 LogText(0,UrlEncode("\"Hello World & Goodbye!!!\"")); return; end;
Related topics: |