How can I get a QueryString Parameter Variable from the URL using Delphi code?
Let's assume I have a URL as follows: https://www.example.com/index.html?first_name=shaun&last_name=roselt
How do I get first_name and last_name from the URL?
I want to do this via Delphi only code and not JavaScript.
There's a function called
GetQueryParamwithin theWebLib.WebToolsunit that comes with TMS Web Core.You can use it as follows to get the
first_nameandlast_nameparameters: