Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Parameters
#2
IW uses the standard structure for URL parameters, as below.

Note that URL parameters start with the "?" character, and each parameter is a pair of name and value

?param=value

Use the "&" character to send multiple parameters

Code:
http://88.209.225.199:8092/$/start?email=abc@website.com&used_id=1002


In your code, you read these values using WebApplication.RunParams(TStrings):


Code:
  if WebApplication.RunParams.IndexOfName('email') <> -1 then
  begin
    lEmail := WebApplication.RunParams.Values['email'];
  end;
  if WebApplication.RunParams.IndexOfName('user_id') <> -1 then
  begin
    lEmail := WebApplication.RunParams.Values['user_id'];
  end;
Reply


Messages In This Thread
Parameters - by mike.price@asterox.net - 01-08-2023, 10:58 AM
RE: Parameters - by JacksonGomes - 01-13-2023, 06:24 PM
RE: Parameters - by mike.price@asterox.net - 01-15-2023, 09:44 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)