04-17-2023, 04:41 PM
(This post was last modified: 04-17-2023, 04:43 PM by MJS@mjs.us.)
>>I think I need to be able to add this parameter on the URL
>>generated by the button click - that should do the trick.
You could also use cookies to store your params like so
Set value on button click:
...
WebApplication->Response->Cookies->AddCookie("ORG",o,WebApplication->CookiePath,Now() + 365, true, true);
Retrieve value in same session or not:
...
String org = WebApplication->Request->GetCookieValue("ORG");
>>generated by the button click - that should do the trick.
You could also use cookies to store your params like so
Set value on button click:
...
WebApplication->Response->Cookies->AddCookie("ORG",o,WebApplication->CookiePath,Now() + 365, true, true);
Retrieve value in same session or not:
...
String org = WebApplication->Request->GetCookieValue("ORG");

