- The good :
- The bad :
- The ugly :
The following formula returns in a text list the URL command responsible for the current page and any parameters:
@UrlQueryString
To get only the value of a parameter, specify the parameter name, for example:
@UrlQueryString(« Category »)
Remarque This @function is new with Release 6.
If you used an & in your parameter to send multiple values, @UrlQueryString(« param ») return only the first (7.0.2) .
Ex: url?OpenForm¶m=toto1&toto2
expected result is : toto1&toto2
effective result is : toto1
Use @ instead of & like this : ¶m=toto1@toto2