close
Parameters in the URL are treated differently in the MX version. The older version captures only one value of parameters with the same name, to be precisely, the last one. On the other hand, MX version takes them all into a list. The example URL string like this:
test.cfm?pid=1&pid=2&pid=3
The output result of pid will be like:
Older Version : 3
MX Version : 1,2,3
You can get each value by using listgetat function in MX, however the only value you could possibly have is the last one in the URL string.
全站熱搜
留言列表